[elbe-devel] [PATCH 7/8] elbepack: commands: cyclonedx-sbom: add licenses
Thomas Weißschuh
thomas.weissschuh at linutronix.de
Fri Aug 30 09:10:14 CEST 2024
From: Eduard Krein <eduard.krein at linutronix.de>
Add licences to the components of the CycloneDX SBOM.
Signed-off-by: Eduard Krein <eduard.krein at linutronix.de>
---
elbepack/commands/cyclonedx-sbom.py | 39 +-
.../tests/cyclonedx/cyclonedx_reference.json | 9801 ++++++++++++++++-
.../tests/cyclonedx/test_cyclonedx_sbom.py | 35 +-
3 files changed, 9785 insertions(+), 90 deletions(-)
diff --git a/elbepack/commands/cyclonedx-sbom.py b/elbepack/commands/cyclonedx-sbom.py
index 5a89434b01fe..34f0dd298894 100644
--- a/elbepack/commands/cyclonedx-sbom.py
+++ b/elbepack/commands/cyclonedx-sbom.py
@@ -10,6 +10,7 @@ import os
import urllib
from elbepack.aptpkgutils import XMLPackage
+from elbepack.commands.parselicence import LicenseType, extract_licenses_from_report
from elbepack.elbexml import ElbeXML
from elbepack.uuid7 import uuid7
from elbepack.version import elbe_version
@@ -23,6 +24,28 @@ class CycloneDXEncoder(json.JSONEncoder):
return obj.isoformat()
+def _licence_from_pkg(pkg, licenses):
+ if pkg.name in licenses:
+ lics = []
+ for lic in licenses[pkg.name][0]:
+ if lic is None:
+ pass
+ elif lic.type == LicenseType.UNKNOWN:
+ lics.append({'license': {'name': lic.name,
+ 'text': {'content': lic.text}}})
+ elif lic.type == LicenseType.SPDX:
+ lics.append({'license': {'id': lic.name}})
+ elif lic.type == LicenseType.SPDX_EXCEPTION:
+ lics.append({'license': {'name': lic.name}})
+ else:
+ raise ValueError(lic.type)
+ return lics
+
+
+def _remove_empty_fields(dict):
+ return {k: v for k, v in dict.items() if v is not None}
+
+
def _repository_url(uri):
uri_parts = uri.split('/')
if len(uri_parts) < 6:
@@ -55,7 +78,7 @@ def _purl_from_pkg(pkg):
)
-def _component_from_apt_pkg(pkg):
+def _component_from_apt_pkg(pkg, licenses):
hash_name_mapping = {
'md5': 'MD5',
'sha1': 'SHA-1',
@@ -73,19 +96,21 @@ def _component_from_apt_pkg(pkg):
else:
type = 'application'
- return {
+ return _remove_empty_fields({
'type': type,
'name': pkg.name,
'version': pkg.installed_version,
'hashes': hashes,
+ 'licenses': _licence_from_pkg(pkg, licenses),
'purl': _purl_from_pkg(pkg),
- }
+ })
def run_command(argv):
aparser = argparse.ArgumentParser(prog='elbe cyclonedx-sbom')
aparser.add_argument('-o', '--output', type=argparse.FileType('w'), default='-')
aparser.add_argument('-d', dest='elbe_build', required=True)
+ aparser.add_argument('-m', dest='mapping', nargs='?', default=None)
args = aparser.parse_args(argv)
ts = datetime.datetime.now(tz=datetime.timezone.utc)
@@ -95,6 +120,10 @@ def run_command(argv):
project_name = source_file.text('/name').strip()
project_version = source_file.text('/version').strip()
project_description = source_file.text('/description').strip()
+ licenses = extract_licenses_from_report(
+ os.path.join(project_dir, 'licence-target.xml'), args.mapping)
+ chroot_lics = extract_licenses_from_report(
+ os.path.join(project_dir, 'licence-chroot.xml'), args.mapping)
pkg_list = []
for p in source_file.node('fullpkgs'):
@@ -103,7 +132,7 @@ def run_command(argv):
components = []
for pkg in pkg_list:
- components.append(_component_from_apt_pkg(pkg))
+ components.append(_component_from_apt_pkg(pkg, licenses))
formulation_components = []
for p in itertools.chain(
@@ -111,7 +140,7 @@ def run_command(argv):
source_file.node('initvmpkgs'),
):
# Duplicates are disallowed by the schema
- c = _component_from_apt_pkg(XMLPackage(p))
+ c = _component_from_apt_pkg(XMLPackage(p), chroot_lics)
if c not in formulation_components:
formulation_components.append(c)
diff --git a/elbepack/tests/cyclonedx/cyclonedx_reference.json b/elbepack/tests/cyclonedx/cyclonedx_reference.json
index 0126b068857c..c7e477159005 100644
--- a/elbepack/tests/cyclonedx/cyclonedx_reference.json
+++ b/elbepack/tests/cyclonedx/cyclonedx_reference.json
@@ -34,6 +34,13 @@
"content": "c24fe4eb8e60d8632d72ed104cce7c92cff200847c897dc8ba764b6c47b519e0"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/adduser at 3.134?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -50,6 +57,28 @@
"content": "6ea03cbbc7a7bfcee601c9fb08d4e026fd522ede5350561f06867ad9c0a0fa6b"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/apt at 2.6.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -66,6 +95,28 @@
"content": "b4fc5ac8cc5e4f17305ca31c259272132bde19b9e86d81003549c35e82bb6e8e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/apt-utils at 2.6.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -82,6 +133,28 @@
"content": "6de342750e6a3940b321a5d056d0e17512d5ad3eb2fcf1fa6dbd783fcb4b7f0e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/base-files at 12.4+deb12u6?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -98,6 +171,18 @@
"content": "908ca1b35125f49125ae56945a72bc11ce0fcec85a8d980d10d83bb3a610f518"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/base-passwd at 3.6.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -114,6 +199,52 @@
"content": "d3c65202568384a588ea32017b243fe64ca054943a008cba4e5bd8f9e79975c4"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Contact: chet at po.cwru.edu\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU Bash,\n the Bourne Again SHell.\n .\n This package was put together by Matthias Klose <doko at debian.org>.\nSource:\n ftp.gnu.org:/pub/gnu/bash\nFiles-Excluded:\n doc/FAQ\n doc/aosa-bash*.pdf\n doc/article.*\n doc/rose94.*\n\nFiles: *\nCopyright: (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: examples/shellmath/*\nCopyright: (c) 2020 by Michael Wood. All rights reserved.\nLicense: GPL-3+\n\nFiles: support/bash.xbm\nCopyright: (C) 1992 Simon Marshall\nLicense: GPL-3+\n\nFiles: support/checkbashisms\nCopyright:\n Copyright (C) 1998 Richard Braakman\n Copyright (C) 2002 Josip Rodin\n Copyright (C) 2003 Julian Gilbey\nLicense: GPL-3+\n\nFiles:\n tests/ifs-posix.tests\n tests/posix2.tests\nCopyright: (C) 2005 Glen Fowler\n Copyright (c) 1995 Stephen Gildea\nLicense: GPL-3+\n\nLicense: GPL-3+\n Bash is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n Bash is distributed in the hope that it will be useful, but WITHOUT\n ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Bash. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: y.tab.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles:\n examples/functions/array-stuff\n examples/functions/fstty\n examples/functions/func\n examples/functions/inetaddr\n examples/functions/isnum2\n examples/functions/ksh*\n examples/functions/notify.bash\n examples/functions/seq*\n examples/functions/sort-pos-params\n examples/functions/substr*\n examples/functions/substr2\n examples/functions/w*\n tests/complete.tests\nCopyright: 1992-2020 Chester Ramey\nLicense: GPL-2+\n\nFiles:\n debian/clear_console.c\n examples/complete/bash_completion\nCopyright:\n Copyright (C) 2006-2019 Canonical Ltd.\n Copyright (C) Ian Macdonald <ian at caliban.org>\nLicense: GPL-2+\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n TThis program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation,\n Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles:\n doc/bashref.texi\n lib/readline/doc/history.texi\n lib/readline/doc/rl*man.texi\nCopyright: (c) 1988-2022 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n ``GNU Free Documentation License''.\nComment:\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n\nFiles:\n lib/readline/doc/rltech.texi\n lib/readline/doc/rluser.texi\n lib/readline/doc/hs*.texi\nCopyright: (C) 1988-2022 Free Software Foundation, Inc.\nLicense: Latex2e\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n pare preserved on all copies.\n .\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n\nFiles: lib/sh/inet_aton.c\nCopyright:\n * Copyright (c) 1983, 1990, 1993\n * The Regents of the University of California. All rights reserved.\n * Portions Copyright (c) 1993 by Digital Equipment Corporation.\nLicense: BSD-4-clause-UC and MIT-like\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. <removed>\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nLicense: MIT-like\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies, and that\n * the name of Digital Equipment Corporation not be used in advertising or\n * publicity pertaining to distribution of the document or software without\n * specific, written prior permission.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL\n * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT\n * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: support/man2html.c\nCopyright: Richard Verhoeven\nLicense: permissive\n * This program was written by Richard Verhoeven (NL:5482ZX35)\n * at the Eindhoven University of Technology. Email: rcb5 at win.tue.nl\n *\n * Permission is granted to distribute, modify and use this program as long\n * as this comment is not removed or changed.\n *\n * THIS IS A MODIFIED VERSION. IT WAS MODIFIED BY chet at po.cwru.edu FOR\n * USE BY BASH.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-4-clause-UC AND MIT-like",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Contact: chet at po.cwru.edu\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU Bash,\n the Bourne Again SHell.\n .\n This package was put together by Matthias Klose <doko at debian.org>.\nSource:\n ftp.gnu.org:/pub/gnu/bash\nFiles-Excluded:\n doc/FAQ\n doc/aosa-bash*.pdf\n doc/article.*\n doc/rose94.*\n\nFiles: *\nCopyright: (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: examples/shellmath/*\nCopyright: (c) 2020 by Michael Wood. All rights reserved.\nLicense: GPL-3+\n\nFiles: support/bash.xbm\nCopyright: (C) 1992 Simon Marshall\nLicense: GPL-3+\n\nFiles: support/checkbashisms\nCopyright:\n Copyright (C) 1998 Richard Braakman\n Copyright (C) 2002 Josip Rodin\n Copyright (C) 2003 Julian Gilbey\nLicense: GPL-3+\n\nFiles:\n tests/ifs-posix.tests\n tests/posix2.tests\nCopyright: (C) 2005 Glen Fowler\n Copyright (c) 1995 Stephen Gildea\nLicense: GPL-3+\n\nLicense: GPL-3+\n Bash is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n Bash is distributed in the hope that it will be useful, but WITHOUT\n ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Bash. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: y.tab.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles:\n examples/functions/array-stuff\n examples/functions/fstty\n examples/functions/func\n examples/functions/inetaddr\n examples/functions/isnum2\n examples/functions/ksh*\n examples/functions/notify.bash\n examples/functions/seq*\n examples/functions/sort-pos-params\n examples/functions/substr*\n examples/functions/substr2\n examples/functions/w*\n tests/complete.tests\nCopyright: 1992-2020 Chester Ramey\nLicense: GPL-2+\n\nFiles:\n debian/clear_console.c\n examples/complete/bash_completion\nCopyright:\n Copyright (C) 2006-2019 Canonical Ltd.\n Copyright (C) Ian Macdonald <ian at caliban.org>\nLicense: GPL-2+\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n TThis program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation,\n Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles:\n doc/bashref.texi\n lib/readline/doc/history.texi\n lib/readline/doc/rl*man.texi\nCopyright: (c) 1988-2022 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n ``GNU Free Documentation License''.\nComment:\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n\nFiles:\n lib/readline/doc/rltech.texi\n lib/readline/doc/rluser.texi\n lib/readline/doc/hs*.texi\nCopyright: (C) 1988-2022 Free Software Foundation, Inc.\nLicense: Latex2e\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n pare preserved on all copies.\n .\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n\nFiles: lib/sh/inet_aton.c\nCopyright:\n * Copyright (c) 1983, 1990, 1993\n * The Regents of the University of California. All rights reserved.\n * Portions Copyright (c) 1993 by Digital Equipment Corporation.\nLicense: BSD-4-clause-UC and MIT-like\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. <removed>\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nLicense: MIT-like\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies, and that\n * the name of Digital Equipment Corporation not be used in advertising or\n * publicity pertaining to distribution of the document or software without\n * specific, written prior permission.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL\n * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT\n * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: support/man2html.c\nCopyright: Richard Verhoeven\nLicense: permissive\n * This program was written by Richard Verhoeven (NL:5482ZX35)\n * at the Eindhoven University of Technology. Email: rcb5 at win.tue.nl\n *\n * Permission is granted to distribute, modify and use this program as long\n * as this comment is not removed or changed.\n *\n * THIS IS A MODIFIED VERSION. IT WAS MODIFIED BY chet at po.cwru.edu FOR\n * USE BY BASH.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Contact: chet at po.cwru.edu\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU Bash,\n the Bourne Again SHell.\n .\n This package was put together by Matthias Klose <doko at debian.org>.\nSource:\n ftp.gnu.org:/pub/gnu/bash\nFiles-Excluded:\n doc/FAQ\n doc/aosa-bash*.pdf\n doc/article.*\n doc/rose94.*\n\nFiles: *\nCopyright: (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: examples/shellmath/*\nCopyright: (c) 2020 by Michael Wood. All rights reserved.\nLicense: GPL-3+\n\nFiles: support/bash.xbm\nCopyright: (C) 1992 Simon Marshall\nLicense: GPL-3+\n\nFiles: support/checkbashisms\nCopyright:\n Copyright (C) 1998 Richard Braakman\n Copyright (C) 2002 Josip Rodin\n Copyright (C) 2003 Julian Gilbey\nLicense: GPL-3+\n\nFiles:\n tests/ifs-posix.tests\n tests/posix2.tests\nCopyright: (C) 2005 Glen Fowler\n Copyright (c) 1995 Stephen Gildea\nLicense: GPL-3+\n\nLicense: GPL-3+\n Bash is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n Bash is distributed in the hope that it will be useful, but WITHOUT\n ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Bash. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: y.tab.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles:\n examples/functions/array-stuff\n examples/functions/fstty\n examples/functions/func\n examples/functions/inetaddr\n examples/functions/isnum2\n examples/functions/ksh*\n examples/functions/notify.bash\n examples/functions/seq*\n examples/functions/sort-pos-params\n examples/functions/substr*\n examples/functions/substr2\n examples/functions/w*\n tests/complete.tests\nCopyright: 1992-2020 Chester Ramey\nLicense: GPL-2+\n\nFiles:\n debian/clear_console.c\n examples/complete/bash_completion\nCopyright:\n Copyright (C) 2006-2019 Canonical Ltd.\n Copyright (C) Ian Macdonald <ian at caliban.org>\nLicense: GPL-2+\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n TThis program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation,\n Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles:\n doc/bashref.texi\n lib/readline/doc/history.texi\n lib/readline/doc/rl*man.texi\nCopyright: (c) 1988-2022 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n ``GNU Free Documentation License''.\nComment:\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n\nFiles:\n lib/readline/doc/rltech.texi\n lib/readline/doc/rluser.texi\n lib/readline/doc/hs*.texi\nCopyright: (C) 1988-2022 Free Software Foundation, Inc.\nLicense: Latex2e\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n pare preserved on all copies.\n .\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n\nFiles: lib/sh/inet_aton.c\nCopyright:\n * Copyright (c) 1983, 1990, 1993\n * The Regents of the University of California. All rights reserved.\n * Portions Copyright (c) 1993 by Digital Equipment Corporation.\nLicense: BSD-4-clause-UC and MIT-like\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. <removed>\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nLicense: MIT-like\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies, and that\n * the name of Digital Equipment Corporation not be used in advertising or\n * publicity pertaining to distribution of the document or software without\n * specific, written prior permission.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL\n * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT\n * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: support/man2html.c\nCopyright: Richard Verhoeven\nLicense: permissive\n * This program was written by Richard Verhoeven (NL:5482ZX35)\n * at the Eindhoven University of Technology. Email: rcb5 at win.tue.nl\n *\n * Permission is granted to distribute, modify and use this program as long\n * as this comment is not removed or changed.\n *\n * THIS IS A MODIFIED VERSION. IT WAS MODIFIED BY chet at po.cwru.edu FOR\n * USE BY BASH.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/bash at 5.2.15-2+b7?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -130,6 +261,71 @@
"content": "bd036aa19f93ad75c312d6130653eb559e5eb4376bd82fde8653ac33732dfa3a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/bsdutils at 1:2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -146,6 +342,39 @@
"content": "61038f857e346e8500adf53a2a0a20859f4d3a3b51570cc876b153a2d51a3091"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later AND BSD-4-clause-UC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This is the Debian GNU/Linux packaged version of the GNU core\n utilities.\n This package is maintained by Michael Stone <mstone at debian.org>.\n See the file AUTHORS for a list of each program's main authors.\nSource: ftp://ftp.gnu.org/gnu/coreutils\n\nFiles: *\nCopyright: (C) 1984-2008 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: lib/fts.c\n lib/fts_.h\nCopyright: (C) 2004-2020, 2008 Free Software Foundation, Inc.\n (c) 1989, 1990, 1993, 1994 The Regents of the University of California. All rights reserved.\nLicense: GPL-3+ and BSD-4-clause-UC\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: lib/rand-isaac.[ch]\nCopyright: (C) 1999-2006 Free Software Foundation, Inc.\n (C) 1997, 1998, 1999 Colin Plumb.\nLicense: GPL-3+\n\nFiles: lib/inet_ntop.c\nCopyright: (C) 2005, 2006 Free Software Foundation, Inc.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n * Copyright (c) 1996-1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: m4/autobuild.m4\nCopyright: (C) 2004, 2006, 2007 Free Software Foundation, Inc.\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\nComment: From Simon Josefsson\n\nFiles: src/cut.c\nCopyright: (C) 1997-2007 Free Software Foundation, Inc.\n (C) 1984 David M. Ihnat\nLicense: GPL-3+\n\nFiles: src/dircolors.c\nCopyright: (C) 1996-2007 Free Software Foundation, Inc.\n (C) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin\nLicense: GPL-3+\n\nFiles: src/paste.c\nCopyright: (C) 1997-2005 Free Software Foundation, Inc.\n (C) 1984 David M. Ihnat\nLicense: GPL-3+\n\nFiles: src/shred.c\nCopyright: (C) 1999-2007 Free Software Foundation, Inc.\n (C) 1997, 1998, 1999 Colin Plumb.\nLicense: GPL-3+\n\nFiles: doc/coreutils.texi\nCopyright: 1994-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, with no Front-Cover Texts, and with no Back-Cover\n Texts. A copy of the license is included in the section entitled ``GNU\n Free Documentation License''.\n .\n On Debian systems, the complete text of the GNU Free Documentation License,\n Version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This is the Debian GNU/Linux packaged version of the GNU core\n utilities.\n This package is maintained by Michael Stone <mstone at debian.org>.\n See the file AUTHORS for a list of each program's main authors.\nSource: ftp://ftp.gnu.org/gnu/coreutils\n\nFiles: *\nCopyright: (C) 1984-2008 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: lib/fts.c\n lib/fts_.h\nCopyright: (C) 2004-2020, 2008 Free Software Foundation, Inc.\n (c) 1989, 1990, 1993, 1994 The Regents of the University of California. All rights reserved.\nLicense: GPL-3+ and BSD-4-clause-UC\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: lib/rand-isaac.[ch]\nCopyright: (C) 1999-2006 Free Software Foundation, Inc.\n (C) 1997, 1998, 1999 Colin Plumb.\nLicense: GPL-3+\n\nFiles: lib/inet_ntop.c\nCopyright: (C) 2005, 2006 Free Software Foundation, Inc.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n * Copyright (c) 1996-1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: m4/autobuild.m4\nCopyright: (C) 2004, 2006, 2007 Free Software Foundation, Inc.\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\nComment: From Simon Josefsson\n\nFiles: src/cut.c\nCopyright: (C) 1997-2007 Free Software Foundation, Inc.\n (C) 1984 David M. Ihnat\nLicense: GPL-3+\n\nFiles: src/dircolors.c\nCopyright: (C) 1996-2007 Free Software Foundation, Inc.\n (C) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin\nLicense: GPL-3+\n\nFiles: src/paste.c\nCopyright: (C) 1997-2005 Free Software Foundation, Inc.\n (C) 1984 David M. Ihnat\nLicense: GPL-3+\n\nFiles: src/shred.c\nCopyright: (C) 1999-2007 Free Software Foundation, Inc.\n (C) 1997, 1998, 1999 Colin Plumb.\nLicense: GPL-3+\n\nFiles: doc/coreutils.texi\nCopyright: 1994-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, with no Front-Cover Texts, and with no Back-Cover\n Texts. A copy of the license is included in the section entitled ``GNU\n Free Documentation License''.\n .\n On Debian systems, the complete text of the GNU Free Documentation License,\n Version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/coreutils at 9.1-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -162,6 +391,18 @@
"content": "73d4a22bdd7eb6be1e480d6884b103eb500cfd539cc20ae0f3e44dd8b0614798"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/cpio at 2.13+dfsg-7.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -178,6 +419,34 @@
"content": "c1e12d9c993460e6396107668aa7ba79f8633decebb53aa6c38049584448be3f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Paul-Vixie's-license",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vixie-cron\nUpstream-Contact: Paul Vixie <paul at vix.com>\nSource:\n The original source for this package could be obtained from \n ftp://ftp.vix.com/pub/vixie/cron-3.0, although that link appears to have gone\n down.\n\nFiles: *\nCopyright: 1988, 1990, 1993, 1994, Paul Vixie <paul at vix.com>\n 1994, Ian Jackson <ian at davenant.greenend.org.uk>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2005-2014, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\n 2010-2016, Christian Kastner <ckk at debian.org>\n Numerous contributions via the Debian BTS copyright their respective authors\nLicense: Paul-Vixie's-license\n\nFiles: database.c\nCopyright: 1988, 1990, 1993, 1994 Paul Vixie <paul at vix.com>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2003, Clint Adams <schizo at debian.org>\n 2010-2011, Christian Kastner <ckk at debian.org>\n 2011, Red Hat, Inc.\nLicense: Paul-Vixie's-license and GPL-2+ and ISC\n\nFiles: debian/examples/cron-stats.pl\nCopyright: 2006, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/cron-tasks-review.sh\nCopyright: 2011, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/crontab2english.pl\nCopyright: 2001, Sean M. Burke\nLicense: Artistic\n\nLicense: Paul-Vixie's-license\n Distribute freely, except: don't remove my name from the source or\n documentation (don't take credit for my work), mark your changes (don't\n get me blamed for your possible bugs), don't alter or remove this\n notice. May be sold if buildable source is provided to buyer. No\n warranty of any kind, express or implied, is included with this\n software; use at your own risk, responsibility for damages (if any) to\n anyone resulting from the use of this software rests entirely with the\n user.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify it\n under the terms of the \"Artistic License\" which comes with Debian.\n .\n THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES\n OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n On Debian systems, the complete text of the Artistic License\n can be found in \"/usr/share/common-licenses/Artistic\".\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any \n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR \n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \n OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Paul-Vixie's-license AND GPL-2.0-or-later AND ISC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vixie-cron\nUpstream-Contact: Paul Vixie <paul at vix.com>\nSource:\n The original source for this package could be obtained from \n ftp://ftp.vix.com/pub/vixie/cron-3.0, although that link appears to have gone\n down.\n\nFiles: *\nCopyright: 1988, 1990, 1993, 1994, Paul Vixie <paul at vix.com>\n 1994, Ian Jackson <ian at davenant.greenend.org.uk>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2005-2014, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\n 2010-2016, Christian Kastner <ckk at debian.org>\n Numerous contributions via the Debian BTS copyright their respective authors\nLicense: Paul-Vixie's-license\n\nFiles: database.c\nCopyright: 1988, 1990, 1993, 1994 Paul Vixie <paul at vix.com>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2003, Clint Adams <schizo at debian.org>\n 2010-2011, Christian Kastner <ckk at debian.org>\n 2011, Red Hat, Inc.\nLicense: Paul-Vixie's-license and GPL-2+ and ISC\n\nFiles: debian/examples/cron-stats.pl\nCopyright: 2006, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/cron-tasks-review.sh\nCopyright: 2011, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/crontab2english.pl\nCopyright: 2001, Sean M. Burke\nLicense: Artistic\n\nLicense: Paul-Vixie's-license\n Distribute freely, except: don't remove my name from the source or\n documentation (don't take credit for my work), mark your changes (don't\n get me blamed for your possible bugs), don't alter or remove this\n notice. May be sold if buildable source is provided to buyer. No\n warranty of any kind, express or implied, is included with this\n software; use at your own risk, responsibility for damages (if any) to\n anyone resulting from the use of this software rests entirely with the\n user.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify it\n under the terms of the \"Artistic License\" which comes with Debian.\n .\n THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES\n OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n On Debian systems, the complete text of the Artistic License\n can be found in \"/usr/share/common-licenses/Artistic\".\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any \n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR \n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \n OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/cron at 3.0pl1-162?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -194,6 +463,34 @@
"content": "0976761a354ce802a2cc6ac02d7585d93ad5fda231c27572d8529a6a62272c7f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Paul-Vixie's-license",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vixie-cron\nUpstream-Contact: Paul Vixie <paul at vix.com>\nSource:\n The original source for this package could be obtained from \n ftp://ftp.vix.com/pub/vixie/cron-3.0, although that link appears to have gone\n down.\n\nFiles: *\nCopyright: 1988, 1990, 1993, 1994, Paul Vixie <paul at vix.com>\n 1994, Ian Jackson <ian at davenant.greenend.org.uk>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2005-2014, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\n 2010-2016, Christian Kastner <ckk at debian.org>\n Numerous contributions via the Debian BTS copyright their respective authors\nLicense: Paul-Vixie's-license\n\nFiles: database.c\nCopyright: 1988, 1990, 1993, 1994 Paul Vixie <paul at vix.com>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2003, Clint Adams <schizo at debian.org>\n 2010-2011, Christian Kastner <ckk at debian.org>\n 2011, Red Hat, Inc.\nLicense: Paul-Vixie's-license and GPL-2+ and ISC\n\nFiles: debian/examples/cron-stats.pl\nCopyright: 2006, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/cron-tasks-review.sh\nCopyright: 2011, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/crontab2english.pl\nCopyright: 2001, Sean M. Burke\nLicense: Artistic\n\nLicense: Paul-Vixie's-license\n Distribute freely, except: don't remove my name from the source or\n documentation (don't take credit for my work), mark your changes (don't\n get me blamed for your possible bugs), don't alter or remove this\n notice. May be sold if buildable source is provided to buyer. No\n warranty of any kind, express or implied, is included with this\n software; use at your own risk, responsibility for damages (if any) to\n anyone resulting from the use of this software rests entirely with the\n user.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify it\n under the terms of the \"Artistic License\" which comes with Debian.\n .\n THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES\n OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n On Debian systems, the complete text of the Artistic License\n can be found in \"/usr/share/common-licenses/Artistic\".\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any \n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR \n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \n OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Paul-Vixie's-license AND GPL-2.0-or-later AND ISC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vixie-cron\nUpstream-Contact: Paul Vixie <paul at vix.com>\nSource:\n The original source for this package could be obtained from \n ftp://ftp.vix.com/pub/vixie/cron-3.0, although that link appears to have gone\n down.\n\nFiles: *\nCopyright: 1988, 1990, 1993, 1994, Paul Vixie <paul at vix.com>\n 1994, Ian Jackson <ian at davenant.greenend.org.uk>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2005-2014, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\n 2010-2016, Christian Kastner <ckk at debian.org>\n Numerous contributions via the Debian BTS copyright their respective authors\nLicense: Paul-Vixie's-license\n\nFiles: database.c\nCopyright: 1988, 1990, 1993, 1994 Paul Vixie <paul at vix.com>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2003, Clint Adams <schizo at debian.org>\n 2010-2011, Christian Kastner <ckk at debian.org>\n 2011, Red Hat, Inc.\nLicense: Paul-Vixie's-license and GPL-2+ and ISC\n\nFiles: debian/examples/cron-stats.pl\nCopyright: 2006, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/cron-tasks-review.sh\nCopyright: 2011, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/crontab2english.pl\nCopyright: 2001, Sean M. Burke\nLicense: Artistic\n\nLicense: Paul-Vixie's-license\n Distribute freely, except: don't remove my name from the source or\n documentation (don't take credit for my work), mark your changes (don't\n get me blamed for your possible bugs), don't alter or remove this\n notice. May be sold if buildable source is provided to buyer. No\n warranty of any kind, express or implied, is included with this\n software; use at your own risk, responsibility for damages (if any) to\n anyone resulting from the use of this software rests entirely with the\n user.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify it\n under the terms of the \"Artistic License\" which comes with Debian.\n .\n THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES\n OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n On Debian systems, the complete text of the Artistic License\n can be found in \"/usr/share/common-licenses/Artistic\".\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any \n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR \n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \n OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/cron-daemon-common at 3.0pl1-162?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -210,6 +507,28 @@
"content": "33ea40061da2f1a861ec46212b2b6a34f0776a049b1a3f0abce2fb8cb994258f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/dash at 0.5.12-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -226,6 +545,13 @@
"content": "74ab14194a3762b2fc717917dcfda42929ab98e3c59295a063344dc551cd7cc8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/debconf at 1.5.82?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -242,6 +568,13 @@
"content": "2f2c83f2d13ccc87d754526e40d156351f271e203fa54e1c822c60988b543dd0"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/debconf-i18n at 1.5.82?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -258,6 +591,13 @@
"content": "c1bac61abefa0d957394d33c02b7bfb2a3ab3ce5e6d90617c4019ddea4bdbf63"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/debian-archive-keyring at 2023.3+deb12u1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -274,6 +614,26 @@
"content": "55f951359670eb3236c9e2ccd5fac9ccb3db734f5a22aff21589e7a30aee48c9"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "SMAIL-GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This is the Debian GNU/Linux package debianutils.\n It is an original Debian package. Programs in it were maintained by\n Guy Maor <maor at debian.org>, and are now maintained by Clint Adams\n <schizo at debian.org>.\n\nFiles: *\nCopyright: (see individual files)\nLicense: GPL-2+\n\nFiles: installkernel\nCopyright:\n Copyright (C) 1995 - 1998, Ian A. Murdock <imurdock at debian.org>\n Copyright (C) 1998, 1999, Guy Maor\n Copyright (C) 2002, Matthew Wilcox\n Copyright (C) 2002, 2004, 2005, 2007, 2009 Clint Adams\n Copyright (C) 2009 Manoj Srivasta\nLicense: GPL-2+\n\nFiles: ischroot.c\nCopyright:\n Copyright (C) 2011 Aurelien Jarno <aurel32 at debian.org>\n Copyright (C) 2015 Andreas Henriksson <andreas at fatal.se>\nLicense: GPL-2+\n\nFiles: run-parts.*\nCopyright:\n Copyright (C) 1994 Ian Jackson.\n Copyright (C) 1996 Jeff Noxon <jeff at router.patch.net>\n Copyright (C) 1996-1999 Guy Maor <maor at debian.org>\n Copyright (C) 2002-2020 Clint Adams\nLicense: GPL-2+\n\nFiles: update-shells\nCopyright: 2021 Helmut Grohne <helmut at subdivi.de>\nLicense: GPL-2+\n\nLicense: GPL-2+\n All the package's programs except 'savelog', and 'which' may be\n redistributed under the terms of the GNU GPL, Version 2 or later,\n found on Debian systems in the file /usr/share/common-licenses/GPL-2.\n\nFiles: which\nCopyright: public-domain\nLicense: public-domain\n which is in the public domain.\n\nFiles: savelog\nCopyright:\n Copyright (C) 1988 Landon Curt Noll & Ronald S. Karr\n Copyright (C) 1992 Ronald S. Karr\n Copyleft (GNU) 1988 Landon Curt Noll & Ronald S. Karr\nLicense: SMAIL-GPL\n SMAIL GENERAL PUBLIC LICENSE\n (Clarified 11 Feb 1988)\n .\n Everyone is permitted to copy and distribute verbatim copies\n of this license, but changing it is not allowed. You can also\n use this wording to make the terms for other programs.\n .\n The license agreements of most software companies keep you at the\n mercy of those companies. By contrast, our general public license is\n intended to give everyone the right to share SMAIL. To make sure that\n you get the rights we want you to have, we need to make restrictions\n that forbid anyone to deny you these rights or to ask you to surrender\n the rights. Hence this license agreement.\n .\n Specifically, we want to make sure that you have the right to give\n away copies of SMAIL, that you receive source code or else can get it\n if you want it, that you can change SMAIL or use pieces of it in new\n free programs, and that you know you can do these things.\n .\n To make sure that everyone has such rights, we have to forbid you to\n deprive anyone else of these rights. For example, if you distribute\n copies of SMAIL, you must give the recipients all the rights that you\n have. You must make sure that they, too, receive or can get the\n source code. And you must tell them their rights.\n .\n Also, for our own protection, we must make certain that everyone\n finds out that there is no warranty for SMAIL. If SMAIL is modified by\n someone else and passed on, we want its recipients to know that what\n they have is not what we distributed, so that any problems introduced\n by others will not reflect on our reputation.\n .\n Therefore we (Landon Curt Noll and Ronald S. Karr) make the following\n terms which say what you must do to be allowed to distribute or change\n SMAIL.\n .\n .\n COPYING POLICIES\n .\n 1. You may copy and distribute verbatim copies of SMAIL source code\n as you receive it, in any medium, provided that you conspicuously and\n appropriately publish on each copy a valid copyright notice \"Copyright\n (C) 1988 Landon Curt Noll & Ronald S. Karr\" (or with whatever year is\n appropriate); keep intact the notices on all files that refer to this\n License Agreement and to the absence of any warranty; and give any\n other recipients of the SMAIL program a copy of this License\n Agreement along with the program. You may charge a distribution fee\n for the physical act of transferring a copy.\n .\n 2. You may modify your copy or copies of SMAIL or any portion of it,\n and copy and distribute such modifications under the terms of\n Paragraph 1 above, provided that you also do the following:\n .\n a) cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change; and\n .\n b) cause the whole of any work that you distribute or publish,\n that in whole or in part contains or is a derivative of SMAIL or\n any part thereof, to be licensed at no charge to all third\n parties on terms identical to those contained in this License\n Agreement (except that you may choose to grant more extensive\n warranty protection to some or all third parties, at your option).\n .\n c) You may charge a distribution fee for the physical act of\n transferring a copy, and you may at your option offer warranty\n protection in exchange for a fee.\n .\n Mere aggregation of another unrelated program with this program (or its\n derivative) on a volume of a storage or distribution medium does not bring\n the other program under the scope of these terms.\n .\n 3. You may copy and distribute SMAIL (or a portion or derivative of it,\n under Paragraph 2) in object code or executable form under the terms of\n Paragraphs 1 and 2 above provided that you also do one of the following:\n .\n a) accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n .\n b) accompany it with a written offer, valid for at least three\n years, to give any third party free (except for a nominal\n shipping charge) a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n .\n c) accompany it with the information you received as to where the\n corresponding source code may be obtained. (This alternative is\n allowed only for non-commercial distribution and only if you\n received the program in object code or executable form alone.)\n .\n For an executable file, complete source code means all the source code for\n all modules it contains; but, as a special exception, it need not include\n source code for modules which are standard libraries that accompany the\n operating system on which the executable file runs.\n .\n 4. You may not copy, sublicense, distribute or transfer SMAIL\n except as expressly provided under this License Agreement. Any attempt\n otherwise to copy, sublicense, distribute or transfer SMAIL is void and\n your rights to use the program under this License agreement shall be\n automatically terminated. However, parties who have received computer\n software programs from you with this License Agreement will not have\n their licenses terminated so long as such parties remain in full compliance.\n .\n 5. If you wish to incorporate parts of SMAIL into other free\n programs whose distribution conditions are different, write to Landon\n Curt Noll & Ronald S. Karr via the Free Software Foundation at 51\n Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. We have not yet\n worked out a simple rule that can be stated here, but we will often\n permit this. We will be guided by the two goals of preserving the\n free status of all derivatives of our free software and of promoting\n the sharing and reuse of software.\n .\n Your comments and suggestions about our licensing policies and our\n software are welcome! This contract was based on the contract made by\n the Free Software Foundation. Please contact the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA, or call (617) 542-5942 for details on copylefted material in\n general.\n .\n NO WARRANTY\n .\n BECAUSE SMAIL IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO\n WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN\n OTHERWISE STATED IN WRITING, LANDON CURT NOLL & RONALD S. KARR AND/OR\n OTHER PARTIES PROVIDE SMAIL \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\n EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF SMAIL IS WITH\n YOU. SHOULD SMAIL PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\n NECESSARY SERVICING, REPAIR OR CORRECTION.\n .\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL LANDON CURT NOLL &\n RONALD S. KARR AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE\n SMAIL AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\n LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR\n CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\n (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\n INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE\n PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE\n BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY\n ANY OTHER PARTY.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/debianutils at 5.7-0.5~deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -290,6 +650,87 @@
"content": "8bdfedc14c1035e3750e9f055ac9c1ecd9b5d05d9e6dc6466c4e9237eef407dd"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH autoconf exception"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH texinfo exception"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: diffutils\nUpstream-Contact: bug-diffutils at gnu.org\nSource: https://ftp.gnu.org/gnu/diffutils/\nComment: This is the Debian prepackaged version of the GNU diffutils package.\n GNU `diff' was written by Mike Haertel, David Hayes, Richard Stallman,\n Len Tower, and Paul Eggert. Wayne Davison designed and implemented\n the unified output format. GNU `diff3' was written by Randy Smith.\n GNU `sdiff' was written by Thomas Lord. GNU `cmp' was written by\n Torbjorn Granlund and David MacKenzie.\n\nFiles: *\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: aclocal.m4\n build-aux/config.rpath\n m4/*\nCopyright: 1996-2021 Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: */Makefile.in\nCopyright: 1994-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ and FSFULLR\n\nFiles: lib/*\n gnulib-tests/accept.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getcwd-lgpl.c\n gnulib-tests/glthread/thread.c\n gnulib-tests/glthread/thread.h\n gnulib-tests/hash-pjw.c\n gnulib-tests/hash-pjw.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/perror.c\n gnulib-tests/pipe.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/same-inode.h\n gnulib-tests/sched.in.h\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/snprintf.c\n gnulib-tests/socket.c\n gnulib-tests/sockets.c\n gnulib-tests/sockets.h\n gnulib-tests/strerror_r.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/sys_socket.c\n gnulib-tests/sys_socket.in.h\n gnulib-tests/sys_uio.in.h\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/gnulib.mk\n lib/gnulib.mk\nCopyright: Copyright (C) 2002-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with autoconf exception\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this file. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License,\n this file may be distributed as part of a program that\n contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: build-aux/texinfo.tex\nCopyright: Copyright 1985, 1986, 1988, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with texinfo exception\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\n lib/_Noreturn.h\n lib/arg-nonnull.h\n lib/c++defs.h\n lib/warn-on-use.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.0+\n\nFiles: build-aux/ar-lib\n build-aux/compile\n build-aux/depcomp\n build-aux/gnupload\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n gnulib-tests/altstack-util.h\n gnulib-tests/mmap-anon-util.h\n gnulib-tests/test-dynarray.c\n gnulib-tests/test-sigsegv-catch-segv1.c\n gnulib-tests/test-sigsegv-catch-segv2.c\n gnulib-tests/test-sigsegv-catch-stackoverflow1.c\n gnulib-tests/test-sigsegv-catch-stackoverflow2.c\n lib/sigsegv.in.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: lib/sigsegv.c\nCopyright: 1993-2021 Free Software Foundation, Inc.\n 2018 Nylon Chen <nylon7 at andestech.com>\nLicense: GPL-2+\n\nFiles: lib/stackvma.c\n lib/stackvma.h\nCopyright: 2002-2021 Free Software Foundation, Inc.\n 2003-2006 Paolo Bonzini <bonzini at gnu.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free Software Foundation, Inc.\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README\n doc/*.texi\n doc/diffutils.info\nCopyright: 1992-1994, 1998, 2001-2002, 2004, 2006, 2007, 2008, 2009-2021\n Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n\nFiles: lib/Makefile.am\n lib/argmatch.c\n lib/argmatch.h\n lib/basename.c\n lib/c-stack.c\n lib/c-stack.h\n lib/cmpbuf.c\n lib/cmpbuf.h\n lib/diffseq.h\n lib/dirname.c\n lib/exclude.c\n lib/exclude.h\n lib/file-type.c\n lib/file-type.h\n lib/filenamecat.c\n lib/prepargs.c\n lib/progname.c\n lib/progname.h\n lib/propername.c\n lib/propername.h\n lib/quote.h\n lib/quotearg.c\n lib/quotearg.h\n lib/sh-quote.c\n lib/sh-quote.h\n lib/stat-macros.h\n lib/stdopen.c\n lib/stdopen.h\n lib/system-quote.c\n lib/system-quote.h\n lib/trim.c\n lib/trim.h\n lib/unlocked-io.h\n lib/xalloc-die.c\n lib/xalloc.h\n lib/xasprintf.c\n lib/xfreopen.c\n lib/xfreopen.h\n lib/xmalloc.c\n lib/xmalloca.c\n lib/xmalloca.h\n lib/xreadlink.c\n lib/xreadlink.h\n lib/xstdopen.c\n lib/xstdopen.h\n lib/xstriconv.c\n lib/xstriconv.h\n lib/xstrtoimax.c\n lib/xstrtol.c\n lib/xstrtol.h\n lib/xstrtoul.c\n lib/xvasprintf.c\n lib/xvasprintf.h\n m4/gnulib-comp.m4\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/putenv.c\n gnulib-tests/symlink.c\n gnulib-tests/wctob.c\n lib/freopen.c\n lib/gettime.c\n lib/ialloc.c\n lib/ialloc.h\n lib/mbscasecmp.c\n lib/mbslen.c\n lib/mbsstr.c\n lib/mbuiter.c\n lib/mbuiter.h\n lib/nstrftime.c\n lib/strftime.h\n lib/strtoimax.c\n lib/strtol.c\n lib/strtoll.c\n lib/time-internal.h\n lib/time_rz.c\n lib/timespec.c\n lib/timespec.h\n lib/tzset.c\n lib/version-etc-fsf.c\n lib/version-etc.c\n lib/version-etc.h\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+\n\nFiles: lib/str-kmp.h\nCopyright: 2005-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+ or GPL-2+\n This file is free software.\n It is dual-licensed under \"the GNU LGPLv3+ or the GNU GPLv2+\".\n You can redistribute it and/or modify it under either\n - the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3, or (at your\n option) any later version, or\n - the terms of the GNU General Public License as published by the\n Free Software Foundation; either version 2, or (at your option)\n any later version, or\n - the same dual license \"the GNU LGPLv3+ or the GNU GPLv2+\".\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License and the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License and of the GNU General Public License along with this\n program. If not, see <https://www.gnu.org/licenses/>. */\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nFiles: debian/*\nCopyright: 2022 Santiago Vila\nLicense: public-domain\n I believe that none of these files contain any creative\n expression eligible for copyright.\n\nLicense: LGPL-2.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2 may be found in `/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 may be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 2 may be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n GNU Free Documentation License.\n .\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 may be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFAP"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: diffutils\nUpstream-Contact: bug-diffutils at gnu.org\nSource: https://ftp.gnu.org/gnu/diffutils/\nComment: This is the Debian prepackaged version of the GNU diffutils package.\n GNU `diff' was written by Mike Haertel, David Hayes, Richard Stallman,\n Len Tower, and Paul Eggert. Wayne Davison designed and implemented\n the unified output format. GNU `diff3' was written by Randy Smith.\n GNU `sdiff' was written by Thomas Lord. GNU `cmp' was written by\n Torbjorn Granlund and David MacKenzie.\n\nFiles: *\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: aclocal.m4\n build-aux/config.rpath\n m4/*\nCopyright: 1996-2021 Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: */Makefile.in\nCopyright: 1994-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ and FSFULLR\n\nFiles: lib/*\n gnulib-tests/accept.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getcwd-lgpl.c\n gnulib-tests/glthread/thread.c\n gnulib-tests/glthread/thread.h\n gnulib-tests/hash-pjw.c\n gnulib-tests/hash-pjw.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/perror.c\n gnulib-tests/pipe.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/same-inode.h\n gnulib-tests/sched.in.h\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/snprintf.c\n gnulib-tests/socket.c\n gnulib-tests/sockets.c\n gnulib-tests/sockets.h\n gnulib-tests/strerror_r.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/sys_socket.c\n gnulib-tests/sys_socket.in.h\n gnulib-tests/sys_uio.in.h\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/gnulib.mk\n lib/gnulib.mk\nCopyright: Copyright (C) 2002-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with autoconf exception\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this file. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License,\n this file may be distributed as part of a program that\n contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: build-aux/texinfo.tex\nCopyright: Copyright 1985, 1986, 1988, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with texinfo exception\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\n lib/_Noreturn.h\n lib/arg-nonnull.h\n lib/c++defs.h\n lib/warn-on-use.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.0+\n\nFiles: build-aux/ar-lib\n build-aux/compile\n build-aux/depcomp\n build-aux/gnupload\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n gnulib-tests/altstack-util.h\n gnulib-tests/mmap-anon-util.h\n gnulib-tests/test-dynarray.c\n gnulib-tests/test-sigsegv-catch-segv1.c\n gnulib-tests/test-sigsegv-catch-segv2.c\n gnulib-tests/test-sigsegv-catch-stackoverflow1.c\n gnulib-tests/test-sigsegv-catch-stackoverflow2.c\n lib/sigsegv.in.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: lib/sigsegv.c\nCopyright: 1993-2021 Free Software Foundation, Inc.\n 2018 Nylon Chen <nylon7 at andestech.com>\nLicense: GPL-2+\n\nFiles: lib/stackvma.c\n lib/stackvma.h\nCopyright: 2002-2021 Free Software Foundation, Inc.\n 2003-2006 Paolo Bonzini <bonzini at gnu.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free Software Foundation, Inc.\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README\n doc/*.texi\n doc/diffutils.info\nCopyright: 1992-1994, 1998, 2001-2002, 2004, 2006, 2007, 2008, 2009-2021\n Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n\nFiles: lib/Makefile.am\n lib/argmatch.c\n lib/argmatch.h\n lib/basename.c\n lib/c-stack.c\n lib/c-stack.h\n lib/cmpbuf.c\n lib/cmpbuf.h\n lib/diffseq.h\n lib/dirname.c\n lib/exclude.c\n lib/exclude.h\n lib/file-type.c\n lib/file-type.h\n lib/filenamecat.c\n lib/prepargs.c\n lib/progname.c\n lib/progname.h\n lib/propername.c\n lib/propername.h\n lib/quote.h\n lib/quotearg.c\n lib/quotearg.h\n lib/sh-quote.c\n lib/sh-quote.h\n lib/stat-macros.h\n lib/stdopen.c\n lib/stdopen.h\n lib/system-quote.c\n lib/system-quote.h\n lib/trim.c\n lib/trim.h\n lib/unlocked-io.h\n lib/xalloc-die.c\n lib/xalloc.h\n lib/xasprintf.c\n lib/xfreopen.c\n lib/xfreopen.h\n lib/xmalloc.c\n lib/xmalloca.c\n lib/xmalloca.h\n lib/xreadlink.c\n lib/xreadlink.h\n lib/xstdopen.c\n lib/xstdopen.h\n lib/xstriconv.c\n lib/xstriconv.h\n lib/xstrtoimax.c\n lib/xstrtol.c\n lib/xstrtol.h\n lib/xstrtoul.c\n lib/xvasprintf.c\n lib/xvasprintf.h\n m4/gnulib-comp.m4\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/putenv.c\n gnulib-tests/symlink.c\n gnulib-tests/wctob.c\n lib/freopen.c\n lib/gettime.c\n lib/ialloc.c\n lib/ialloc.h\n lib/mbscasecmp.c\n lib/mbslen.c\n lib/mbsstr.c\n lib/mbuiter.c\n lib/mbuiter.h\n lib/nstrftime.c\n lib/strftime.h\n lib/strtoimax.c\n lib/strtol.c\n lib/strtoll.c\n lib/time-internal.h\n lib/time_rz.c\n lib/timespec.c\n lib/timespec.h\n lib/tzset.c\n lib/version-etc-fsf.c\n lib/version-etc.c\n lib/version-etc.h\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+\n\nFiles: lib/str-kmp.h\nCopyright: 2005-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+ or GPL-2+\n This file is free software.\n It is dual-licensed under \"the GNU LGPLv3+ or the GNU GPLv2+\".\n You can redistribute it and/or modify it under either\n - the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3, or (at your\n option) any later version, or\n - the terms of the GNU General Public License as published by the\n Free Software Foundation; either version 2, or (at your option)\n any later version, or\n - the same dual license \"the GNU LGPLv3+ or the GNU GPLv2+\".\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License and the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License and of the GNU General Public License along with this\n program. If not, see <https://www.gnu.org/licenses/>. */\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nFiles: debian/*\nCopyright: 2022 Santiago Vila\nLicense: public-domain\n I believe that none of these files contain any creative\n expression eligible for copyright.\n\nLicense: LGPL-2.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2 may be found in `/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 may be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 2 may be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n GNU Free Documentation License.\n .\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 may be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: diffutils\nUpstream-Contact: bug-diffutils at gnu.org\nSource: https://ftp.gnu.org/gnu/diffutils/\nComment: This is the Debian prepackaged version of the GNU diffutils package.\n GNU `diff' was written by Mike Haertel, David Hayes, Richard Stallman,\n Len Tower, and Paul Eggert. Wayne Davison designed and implemented\n the unified output format. GNU `diff3' was written by Randy Smith.\n GNU `sdiff' was written by Thomas Lord. GNU `cmp' was written by\n Torbjorn Granlund and David MacKenzie.\n\nFiles: *\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: aclocal.m4\n build-aux/config.rpath\n m4/*\nCopyright: 1996-2021 Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: */Makefile.in\nCopyright: 1994-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ and FSFULLR\n\nFiles: lib/*\n gnulib-tests/accept.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getcwd-lgpl.c\n gnulib-tests/glthread/thread.c\n gnulib-tests/glthread/thread.h\n gnulib-tests/hash-pjw.c\n gnulib-tests/hash-pjw.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/perror.c\n gnulib-tests/pipe.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/same-inode.h\n gnulib-tests/sched.in.h\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/snprintf.c\n gnulib-tests/socket.c\n gnulib-tests/sockets.c\n gnulib-tests/sockets.h\n gnulib-tests/strerror_r.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/sys_socket.c\n gnulib-tests/sys_socket.in.h\n gnulib-tests/sys_uio.in.h\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/gnulib.mk\n lib/gnulib.mk\nCopyright: Copyright (C) 2002-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with autoconf exception\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this file. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License,\n this file may be distributed as part of a program that\n contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: build-aux/texinfo.tex\nCopyright: Copyright 1985, 1986, 1988, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with texinfo exception\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\n lib/_Noreturn.h\n lib/arg-nonnull.h\n lib/c++defs.h\n lib/warn-on-use.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.0+\n\nFiles: build-aux/ar-lib\n build-aux/compile\n build-aux/depcomp\n build-aux/gnupload\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n gnulib-tests/altstack-util.h\n gnulib-tests/mmap-anon-util.h\n gnulib-tests/test-dynarray.c\n gnulib-tests/test-sigsegv-catch-segv1.c\n gnulib-tests/test-sigsegv-catch-segv2.c\n gnulib-tests/test-sigsegv-catch-stackoverflow1.c\n gnulib-tests/test-sigsegv-catch-stackoverflow2.c\n lib/sigsegv.in.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: lib/sigsegv.c\nCopyright: 1993-2021 Free Software Foundation, Inc.\n 2018 Nylon Chen <nylon7 at andestech.com>\nLicense: GPL-2+\n\nFiles: lib/stackvma.c\n lib/stackvma.h\nCopyright: 2002-2021 Free Software Foundation, Inc.\n 2003-2006 Paolo Bonzini <bonzini at gnu.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free Software Foundation, Inc.\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README\n doc/*.texi\n doc/diffutils.info\nCopyright: 1992-1994, 1998, 2001-2002, 2004, 2006, 2007, 2008, 2009-2021\n Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n\nFiles: lib/Makefile.am\n lib/argmatch.c\n lib/argmatch.h\n lib/basename.c\n lib/c-stack.c\n lib/c-stack.h\n lib/cmpbuf.c\n lib/cmpbuf.h\n lib/diffseq.h\n lib/dirname.c\n lib/exclude.c\n lib/exclude.h\n lib/file-type.c\n lib/file-type.h\n lib/filenamecat.c\n lib/prepargs.c\n lib/progname.c\n lib/progname.h\n lib/propername.c\n lib/propername.h\n lib/quote.h\n lib/quotearg.c\n lib/quotearg.h\n lib/sh-quote.c\n lib/sh-quote.h\n lib/stat-macros.h\n lib/stdopen.c\n lib/stdopen.h\n lib/system-quote.c\n lib/system-quote.h\n lib/trim.c\n lib/trim.h\n lib/unlocked-io.h\n lib/xalloc-die.c\n lib/xalloc.h\n lib/xasprintf.c\n lib/xfreopen.c\n lib/xfreopen.h\n lib/xmalloc.c\n lib/xmalloca.c\n lib/xmalloca.h\n lib/xreadlink.c\n lib/xreadlink.h\n lib/xstdopen.c\n lib/xstdopen.h\n lib/xstriconv.c\n lib/xstriconv.h\n lib/xstrtoimax.c\n lib/xstrtol.c\n lib/xstrtol.h\n lib/xstrtoul.c\n lib/xvasprintf.c\n lib/xvasprintf.h\n m4/gnulib-comp.m4\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/putenv.c\n gnulib-tests/symlink.c\n gnulib-tests/wctob.c\n lib/freopen.c\n lib/gettime.c\n lib/ialloc.c\n lib/ialloc.h\n lib/mbscasecmp.c\n lib/mbslen.c\n lib/mbsstr.c\n lib/mbuiter.c\n lib/mbuiter.h\n lib/nstrftime.c\n lib/strftime.h\n lib/strtoimax.c\n lib/strtol.c\n lib/strtoll.c\n lib/time-internal.h\n lib/time_rz.c\n lib/timespec.c\n lib/timespec.h\n lib/tzset.c\n lib/version-etc-fsf.c\n lib/version-etc.c\n lib/version-etc.h\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+\n\nFiles: lib/str-kmp.h\nCopyright: 2005-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+ or GPL-2+\n This file is free software.\n It is dual-licensed under \"the GNU LGPLv3+ or the GNU GPLv2+\".\n You can redistribute it and/or modify it under either\n - the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3, or (at your\n option) any later version, or\n - the terms of the GNU General Public License as published by the\n Free Software Foundation; either version 2, or (at your option)\n any later version, or\n - the same dual license \"the GNU LGPLv3+ or the GNU GPLv2+\".\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License and the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License and of the GNU General Public License along with this\n program. If not, see <https://www.gnu.org/licenses/>. */\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nFiles: debian/*\nCopyright: 2022 Santiago Vila\nLicense: public-domain\n I believe that none of these files contain any creative\n expression eligible for copyright.\n\nLicense: LGPL-2.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2 may be found in `/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 may be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 2 may be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n GNU Free Documentation License.\n .\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 may be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/diffutils at 1:3.8-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -306,6 +747,13 @@
"content": "d993666c87dd290d6df2a69bf0beba608c38b1157a5c97795d2011e51b0db96e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/dmidecode at 3.4-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -322,6 +770,28 @@
"content": "c73fc490b93c83550ed272de69ec96c5da30d4456b889f9e93c7fd8e53860b85"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/dmsetup at 2:1.02.185-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -338,6 +808,31 @@
"content": "9d97f27d8a8a06dd4800e8e0291337ca02e11cdfd7df09a4566a982a6d9fe4c4"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "public-domain-s-s-d",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: dpkg\n\nFiles: *\nCopyright:\n Copyright \u00a9 1994 Ian Murdock <imurdock at debian.org>\n Copyright \u00a9 1994 Matt Welsh <mdw at sunsite.unc.edu>\n Copyright \u00a9 1994 Carl Streeter <streeter at cae.wisc.edu>\n Copyright \u00a9 1994-1999, 2007-2008 Ian Jackson <ijackson at chiark.greenend.org.uk>\n Copyright \u00a9 1995 Bruce Perens <bruce at pixar.com>\n Copyright \u00a9 1995-1996 Erick Branderhorst <branderhorst at heel.fgg.eur.nl>\n Copyright \u00a9 1996 Michael Shields <shields at crosslink.net>\n Copyright \u00a9 1996 Klee Dienes <klee at debian.org>\n Copyright \u00a9 1996 Kim-Minh Kaplan <kkaplan at cdfhp3.in2p3.fr>\n Copyright \u00a9 1996-1998 Miquel van Smoorenburg <miquels at cistron.nl>\n Copyright \u00a9 1997-1998 Charles Briscoe-Smith <cpbs at debian.org>\n Copyright \u00a9 1997-1998 Juho Vuori <javuori at cc.helsinki.fi>\n Copyright \u00a9 1998 Koichi Sekido <sekido at mbox.kyoto-inet.or.jp>\n Copyright \u00a9 1998 Jim Van Zandt <jrv at vanzandt.mv.com>\n Copyright \u00a9 1998 Juan Cespedes <cespedes at debian.org>\n Copyright \u00a9 1998 Nils Rennebarth <nils at debian.org>\n Copyright \u00a9 1998 Heiko Schlittermann <hs at schlittermann.de>\n Copyright \u00a9 1998-1999, 2001, 2003, 2006 Martin Schulze <joey at infodrom.org>\n Copyright \u00a9 1999 Roderick Shertler <roderick at argon.org>\n Copyright \u00a9 1999 Ben Collins <bcollins at debian.org>\n Copyright \u00a9 1999 Richard Kettlewell <rjk at sfere.greenend.org.uk>\n Copyright \u00a9 1999-2001 Marcus Brinkmann <brinkmd at debian.org>\n Copyright \u00a9 1999-2002 Wichert Akkerman <wakkerma at debian.org>\n Copyright \u00a9 2001, 2007, 2010 Joey Hess <joeyh at debian.org>\n Copyright \u00a9 2004-2005, 2007-2008, 2010 Canonical Ltd.\n Copyright \u00a9 2004-2005 Scott James Remnant <scott at netsplit.com>\n Copyright \u00a9 2006-2008 Frank Lichtenheld <djpig at debian.org>\n Copyright \u00a9 2006-2023 Guillem Jover <guillem at debian.org>\n Copyright \u00a9 2007-2012, 2014, 2016 Rapha\u00ebl Hertzog <hertzog at debian.org>\n Copyright \u00a9 2007 Nicolas Fran\u00e7ois <nicolas.francois at centraliens.net>\n Copyright \u00a9 2007 Don Armstrong <don at donarmstrong.com>\n Copyright \u00a9 2007 Colin Watson <cjwatson at debian.org>\n Copyright \u00a9 2007, 2008 Tollef Fog Heen <tfheen at err.no>\n Copyright \u00a9 2007-2010 Canonical Ltd.\n Copyright \u00a9 2008 James Westby <jw+debian at jameswestby.net>\n Copyright \u00a9 2008 Zack Weinberg <zackw at panix.com>\n Copyright \u00a9 2008 Pierre Habouzit <madcoder at debian.org>\n Copyright \u00a9 2009 Romain Francoise <rfrancoise at debian.org>\n Copyright \u00a9 2009-2010 Modestas Vainius <modax at debian.org>\n Copyright \u00a9 2009-2011 Kees Cook <kees at debian.org>\n Copyright \u00a9 2010 Charles Plessy <plessy at debian.org>\n Copyright \u00a9 2010 Oxan van Leeuwen <oxan at oxanvanleeuwen.nl>\n Copyright \u00a9 2010 Russ Allbery <rra at debian.org>\n Copyright \u00a9 2011 Linaro Limited\n Copyright \u00a9 2011 Matt Kraai <kraai at ftbfs.org>\n Copyright \u00a9 2014 Bill Allombert <ballombe at debian.org>\n Copyright \u00a9 2014-2015 J\u00e9r\u00e9my Bobbio <lunar at debian.org>\n Copyright \u00a9 2020 Helmut Grohne <helmut at subdivi.de>\n Copyright \u00a9 2021 Sebastian Andrzej Siewior <sebastian at breakpoint.cc>\nLicense: GPL-2+\n\nFiles:\n lib/compat/getopt*\n lib/compat/gettext.h\n lib/compat/obstack.*\n lib/compat/strnlen.c\nCopyright:\n Copyright \u00a9 1987-2006 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles:\n dselect/methods/Dselect/Ftp.pm\n dselect/methods/ftp/*\nCopyright:\n Copyright \u00a9 1996 Andy Guy <awpguy at acs.ucalgary.ca>\n Copyright \u00a9 1998 Martin Schulze <joey at infodrom.org>\n Copyright \u00a9 1999-2001, 2005-2006, 2009 Rapha\u00ebl Hertzog <hertzog at debian.org>\nLicense: GPL-2\n\nFiles:\n scripts/Dpkg/Gettext.pm\nCopyright:\n Copyright \u00a9 2000 Joey Hess <joeyh at debian.org>\n Copyright \u00a9 2007-2022 Guillem Jover <guillem at debian.org>\nLicense: BSD-2-clause\n\nFiles:\n utils/start-stop-daemon.c\nCopyright:\n Copyright \u00a9 1999 Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\n Copyright \u00a9 1999 Christian Schwarz <schwarz at monet.m.isar.de>\n Copyright \u00a9 1999 Klee Dienes <klee at debian.org>\n Copyright \u00a9 1999 Ben Collins <bcollins at debian.org>\n Copyright \u00a9 1999-2002 Wichert Akkerman <wakkerma at debian.org>\n Copyright \u00a9 2000-2003 Adam Heath <doogie at debian.org>\n Copyright \u00a9 2001 Sontri Tomo Huynh <huynh.29 at osu.edu>\n Copyright \u00a9 2001 Andreas Schuldei <andreas at schuldei.org>\n Copyright \u00a9 2001 Ian Jackson <ijackson at chiark.greenend.org.uk>\n Copyright \u00a9 2004-2005 Scott James Remnant <keybuk at debian.org>\n Copyright \u00a9 2006-2021 Guillem Jover <guillem at debian.org>\n Copyright \u00a9 2008 Samuel Thibault <samuel.thibault at ens-lyon.org>\n Copyright \u00a9 2008 Andreas P\u00e5hlsson <andreas.pahlsson at xcerion.com>\n Copyright \u00a9 2009 Chris Coulson <chrisccoulson at googlemail.com>\n Copyright \u00a9 2012 Carsten Hey <carsten at debian.org>\n Copyright \u00a9 2014 Nir Soffer <nirs at hyperms.com>\nLicense: public-domain-s-s-d\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain. Based conceptually on start-stop-daemon.pl, by Ian\n Jackson <ijackson at gnu.ai.mit.edu>. May be used and distributed\n freely for any purpose. Changes by Christian Schwarz\n <schwarz at monet.m.isar.de>, to make output conform to the Debian\n Console Message Standard, also placed in public domain. Minor\n changes by Klee Dienes <klee at debian.org>, also placed in the Public\n Domain.\n .\n Changes by Ben Collins <bcollins at debian.org>, added --chuid, --background\n and --make-pidfile options, placed in public domain as well.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n can be found in \u2018/usr/share/common-licenses/GPL-2\u2019 or in the dpkg source\n as the file \u2018COPYING\u2019.\n\nLicense: GPL-2\n This is free software; you can redistribute it and/or modify\n it under the terms of version 2 of the GNU General Public\n License version 2 as published by the Free Software Foundation.\n .\n This is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY AUTHORS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/dpkg at 1.21.22?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -354,6 +849,59 @@
"content": "4018d17d6a44ffeb19c002dc9f721bf474e6879ad814f1bfcdd6666803e30178"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/e2fsprogs at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -370,6 +918,71 @@
"content": "ef49a1bfa24d22ac8b0f70f3ab2ddb7fa53cd5d1612fa1a01abc3be76717dfd2"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/fdisk at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -386,22 +999,226 @@
"content": "5dd86bd0af4aa73f067dfd6b8339dd868f2dd84056aa79db29d1206d4fbc5e04"
}
],
- "purl": "pkg:deb/debian/findutils at 4.9.0-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
- },
- {
- "type": "application",
- "name": "gcc-12-base",
- "version": "12.2.0-14",
- "hashes": [
+ "licenses": [
{
- "alg": "MD5",
- "content": "cafae34a8d7395260118ba01e242a1c0"
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFAP"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Autoconf-data exception"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Autoconf-data exception"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL WITH automake exception",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause and/or GPL-3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-2.2 exception"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "ISC and/or LGPL-2.1+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ }
+ ],
+ "purl": "pkg:deb/debian/findutils at 4.9.0-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
+ },
+ {
+ "type": "application",
+ "name": "gcc-12-base",
+ "version": "12.2.0-14",
+ "hashes": [
+ {
+ "alg": "MD5",
+ "content": "cafae34a8d7395260118ba01e242a1c0"
},
{
"alg": "SHA-256",
"content": "1a03df5a57833d65b5bb08cfa19d50e76f29088dc9e64fb934af42d9023a0807"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFAP"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Autoconf-data exception"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Autoconf-data exception"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL WITH automake exception",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause and/or GPL-3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-2.2 exception"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "ISC and/or LGPL-2.1+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/gcc-12-base at 12.2.0-14?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -418,6 +1235,65 @@
"content": "0a43a9785f32d517a967d99e00d8e0a69edc0be09d4e63a08d7fd64466a11a0f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GnuPG - The GNU Privacy Guard (modern version)\nUpstream-Contact: GnuPG development mailing list <gnupg-devel at gnupg.org>\nSource: https://gnupg.org/download/\n\nFiles: *\nCopyright: 1992, 1995-2020, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: agent/command.c\n agent/command-ssh.c\n agent/gpg-agent.c\n common/homedir.c\n common/sysutils.c\n g10/mainproc.c\nCopyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc\n 2013, Werner Koch\nLicense: GPL-3+\n\nFiles: autogen.sh\nCopyright: 2003, g10 Code GmbH\nLicense: permissive\n\nFiles: common/gc-opt-flags.h\n common/i18n.h\n tools/clean-sat.c\n tools/no-libgcrypt.c\nCopyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc\nLicense: permissive\n\nFiles: common/localename.c\nCopyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: dirmngr/dns.c\n dirmngr/dns.h\nCopyright: 2008-2010, 2012-2016 William Ahern\nLicense: Expat\n\nFiles: doc/yat2m.c\n scd/app-geldkarte.c\nCopyright: 2004, 2005, g10 Code GmbH\n 2006, 2008, 2009, 2011, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: scd/ccid-driver.h\n scd/ccid-driver.c\nCopyright: 2003-2007, Free Software Foundation, Inc\nLicense: GPL-3+ or BSD-3-clause\n\nFiles: tools/rfc822parse.c\n tools/rfc822parse.h\nCopyright: 1999-2000, Werner Koch, Duesseldorf\n 2003-2004, g10 Code GmbH\nLicense: LGPL-3+\n\nFiles: tools/sockprox.c\nCopyright: 2007, g10 Code GmbH\nLicense: GPL-3+\n\nFiles: doc/OpenPGP\nCopyright: 1998-2013 Free Software Foundation, Inc.\n 1997, 1998, 2013 Werner Koch\n 1998 The Internet Society\nLicense: RFC-Reference\n\nFiles: tests/gpgscm/*\nCopyright: 2000, Dimitrios Souflis\n 2016, Justus Winter, Werner Koch\nLicense: TinySCHEME\n\nFiles: debian/*\nCopyright: 1998-2022 Debian GnuPG packagers, including\n Eric Dorland <eric at debian.org>\n Daniel Kahn Gillmor <dkg at fifthhorseman.net>\n NIIBE Yutaka <gniibe at fsij.org>\nLicense: GPL-3+\n\nFiles: debian/org.gnupg.scdaemon.metainfo.xml\nCopyright: 2017 Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nComment: This file is licensed permissively for the sake of AppStream\nLicense: CC0-1.0\n\nLicense: TinySCHEME\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither the name of Dimitrios Souflis nor the names of the\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nLicense: permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE.\n\nLicense: RFC-Reference\n doc/OpenPGP merely cites and references IETF Draft\n draft-ietf-openpgp-formats-07.txt. This is believed to be fair use;\n but if not, it's covered by the source document's license under\n the 'comment on' clause. The license statement follows.\n .\n This document and translations of it may be copied and furnished to\n others, and derivative works that comment on or otherwise explain it\n or assist in its implementation may be prepared, copied, published\n and distributed, in whole or in part, without restriction of any\n kind, provided that the above copyright notice and this paragraph\n are included on all such copies and derivative works. However, this\n document itself may not be modified in any way, such as by removing\n the copyright notice or references to the Internet Society or other\n Internet organizations, except as needed for the purpose of\n developing Internet standards in which case the procedures for\n copyrights defined in the Internet Standards process must be\n followed, or as required to translate it into languages other than\n English.\n .\n The limited permissions granted above are perpetual and will not be\n revoked by the Internet Society or its successors or assigns.\n\n\nLicense: GPL-3+\n GnuPG is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n GnuPG is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2.1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: CC0-1.0\n To the extent possible under law, the author(s) have dedicated all\n copyright and related and neighboring rights to this software to the public\n domain worldwide. This software is distributed without any warranty.\n .\n On Debian systems, the complete text of the CC0 license, version 1.0,\n can be found in /usr/share/common-licenses/CC0-1.0.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GnuPG - The GNU Privacy Guard (modern version)\nUpstream-Contact: GnuPG development mailing list <gnupg-devel at gnupg.org>\nSource: https://gnupg.org/download/\n\nFiles: *\nCopyright: 1992, 1995-2020, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: agent/command.c\n agent/command-ssh.c\n agent/gpg-agent.c\n common/homedir.c\n common/sysutils.c\n g10/mainproc.c\nCopyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc\n 2013, Werner Koch\nLicense: GPL-3+\n\nFiles: autogen.sh\nCopyright: 2003, g10 Code GmbH\nLicense: permissive\n\nFiles: common/gc-opt-flags.h\n common/i18n.h\n tools/clean-sat.c\n tools/no-libgcrypt.c\nCopyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc\nLicense: permissive\n\nFiles: common/localename.c\nCopyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: dirmngr/dns.c\n dirmngr/dns.h\nCopyright: 2008-2010, 2012-2016 William Ahern\nLicense: Expat\n\nFiles: doc/yat2m.c\n scd/app-geldkarte.c\nCopyright: 2004, 2005, g10 Code GmbH\n 2006, 2008, 2009, 2011, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: scd/ccid-driver.h\n scd/ccid-driver.c\nCopyright: 2003-2007, Free Software Foundation, Inc\nLicense: GPL-3+ or BSD-3-clause\n\nFiles: tools/rfc822parse.c\n tools/rfc822parse.h\nCopyright: 1999-2000, Werner Koch, Duesseldorf\n 2003-2004, g10 Code GmbH\nLicense: LGPL-3+\n\nFiles: tools/sockprox.c\nCopyright: 2007, g10 Code GmbH\nLicense: GPL-3+\n\nFiles: doc/OpenPGP\nCopyright: 1998-2013 Free Software Foundation, Inc.\n 1997, 1998, 2013 Werner Koch\n 1998 The Internet Society\nLicense: RFC-Reference\n\nFiles: tests/gpgscm/*\nCopyright: 2000, Dimitrios Souflis\n 2016, Justus Winter, Werner Koch\nLicense: TinySCHEME\n\nFiles: debian/*\nCopyright: 1998-2022 Debian GnuPG packagers, including\n Eric Dorland <eric at debian.org>\n Daniel Kahn Gillmor <dkg at fifthhorseman.net>\n NIIBE Yutaka <gniibe at fsij.org>\nLicense: GPL-3+\n\nFiles: debian/org.gnupg.scdaemon.metainfo.xml\nCopyright: 2017 Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nComment: This file is licensed permissively for the sake of AppStream\nLicense: CC0-1.0\n\nLicense: TinySCHEME\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither the name of Dimitrios Souflis nor the names of the\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nLicense: permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE.\n\nLicense: RFC-Reference\n doc/OpenPGP merely cites and references IETF Draft\n draft-ietf-openpgp-formats-07.txt. This is believed to be fair use;\n but if not, it's covered by the source document's license under\n the 'comment on' clause. The license statement follows.\n .\n This document and translations of it may be copied and furnished to\n others, and derivative works that comment on or otherwise explain it\n or assist in its implementation may be prepared, copied, published\n and distributed, in whole or in part, without restriction of any\n kind, provided that the above copyright notice and this paragraph\n are included on all such copies and derivative works. However, this\n document itself may not be modified in any way, such as by removing\n the copyright notice or references to the Internet Society or other\n Internet organizations, except as needed for the purpose of\n developing Internet standards in which case the procedures for\n copyrights defined in the Internet Standards process must be\n followed, or as required to translate it into languages other than\n English.\n .\n The limited permissions granted above are perpetual and will not be\n revoked by the Internet Society or its successors or assigns.\n\n\nLicense: GPL-3+\n GnuPG is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n GnuPG is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2.1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: CC0-1.0\n To the extent possible under law, the author(s) have dedicated all\n copyright and related and neighboring rights to this software to the public\n domain worldwide. This software is distributed without any warranty.\n .\n On Debian systems, the complete text of the CC0 license, version 1.0,\n can be found in /usr/share/common-licenses/CC0-1.0.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "RFC-Reference",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GnuPG - The GNU Privacy Guard (modern version)\nUpstream-Contact: GnuPG development mailing list <gnupg-devel at gnupg.org>\nSource: https://gnupg.org/download/\n\nFiles: *\nCopyright: 1992, 1995-2020, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: agent/command.c\n agent/command-ssh.c\n agent/gpg-agent.c\n common/homedir.c\n common/sysutils.c\n g10/mainproc.c\nCopyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc\n 2013, Werner Koch\nLicense: GPL-3+\n\nFiles: autogen.sh\nCopyright: 2003, g10 Code GmbH\nLicense: permissive\n\nFiles: common/gc-opt-flags.h\n common/i18n.h\n tools/clean-sat.c\n tools/no-libgcrypt.c\nCopyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc\nLicense: permissive\n\nFiles: common/localename.c\nCopyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: dirmngr/dns.c\n dirmngr/dns.h\nCopyright: 2008-2010, 2012-2016 William Ahern\nLicense: Expat\n\nFiles: doc/yat2m.c\n scd/app-geldkarte.c\nCopyright: 2004, 2005, g10 Code GmbH\n 2006, 2008, 2009, 2011, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: scd/ccid-driver.h\n scd/ccid-driver.c\nCopyright: 2003-2007, Free Software Foundation, Inc\nLicense: GPL-3+ or BSD-3-clause\n\nFiles: tools/rfc822parse.c\n tools/rfc822parse.h\nCopyright: 1999-2000, Werner Koch, Duesseldorf\n 2003-2004, g10 Code GmbH\nLicense: LGPL-3+\n\nFiles: tools/sockprox.c\nCopyright: 2007, g10 Code GmbH\nLicense: GPL-3+\n\nFiles: doc/OpenPGP\nCopyright: 1998-2013 Free Software Foundation, Inc.\n 1997, 1998, 2013 Werner Koch\n 1998 The Internet Society\nLicense: RFC-Reference\n\nFiles: tests/gpgscm/*\nCopyright: 2000, Dimitrios Souflis\n 2016, Justus Winter, Werner Koch\nLicense: TinySCHEME\n\nFiles: debian/*\nCopyright: 1998-2022 Debian GnuPG packagers, including\n Eric Dorland <eric at debian.org>\n Daniel Kahn Gillmor <dkg at fifthhorseman.net>\n NIIBE Yutaka <gniibe at fsij.org>\nLicense: GPL-3+\n\nFiles: debian/org.gnupg.scdaemon.metainfo.xml\nCopyright: 2017 Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nComment: This file is licensed permissively for the sake of AppStream\nLicense: CC0-1.0\n\nLicense: TinySCHEME\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither the name of Dimitrios Souflis nor the names of the\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nLicense: permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE.\n\nLicense: RFC-Reference\n doc/OpenPGP merely cites and references IETF Draft\n draft-ietf-openpgp-formats-07.txt. This is believed to be fair use;\n but if not, it's covered by the source document's license under\n the 'comment on' clause. The license statement follows.\n .\n This document and translations of it may be copied and furnished to\n others, and derivative works that comment on or otherwise explain it\n or assist in its implementation may be prepared, copied, published\n and distributed, in whole or in part, without restriction of any\n kind, provided that the above copyright notice and this paragraph\n are included on all such copies and derivative works. However, this\n document itself may not be modified in any way, such as by removing\n the copyright notice or references to the Internet Society or other\n Internet organizations, except as needed for the purpose of\n developing Internet standards in which case the procedures for\n copyrights defined in the Internet Standards process must be\n followed, or as required to translate it into languages other than\n English.\n .\n The limited permissions granted above are perpetual and will not be\n revoked by the Internet Society or its successors or assigns.\n\n\nLicense: GPL-3+\n GnuPG is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n GnuPG is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2.1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: CC0-1.0\n To the extent possible under law, the author(s) have dedicated all\n copyright and related and neighboring rights to this software to the public\n domain worldwide. This software is distributed without any warranty.\n .\n On Debian systems, the complete text of the CC0 license, version 1.0,\n can be found in /usr/share/common-licenses/CC0-1.0.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "TinySCHEME",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GnuPG - The GNU Privacy Guard (modern version)\nUpstream-Contact: GnuPG development mailing list <gnupg-devel at gnupg.org>\nSource: https://gnupg.org/download/\n\nFiles: *\nCopyright: 1992, 1995-2020, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: agent/command.c\n agent/command-ssh.c\n agent/gpg-agent.c\n common/homedir.c\n common/sysutils.c\n g10/mainproc.c\nCopyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc\n 2013, Werner Koch\nLicense: GPL-3+\n\nFiles: autogen.sh\nCopyright: 2003, g10 Code GmbH\nLicense: permissive\n\nFiles: common/gc-opt-flags.h\n common/i18n.h\n tools/clean-sat.c\n tools/no-libgcrypt.c\nCopyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc\nLicense: permissive\n\nFiles: common/localename.c\nCopyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: dirmngr/dns.c\n dirmngr/dns.h\nCopyright: 2008-2010, 2012-2016 William Ahern\nLicense: Expat\n\nFiles: doc/yat2m.c\n scd/app-geldkarte.c\nCopyright: 2004, 2005, g10 Code GmbH\n 2006, 2008, 2009, 2011, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: scd/ccid-driver.h\n scd/ccid-driver.c\nCopyright: 2003-2007, Free Software Foundation, Inc\nLicense: GPL-3+ or BSD-3-clause\n\nFiles: tools/rfc822parse.c\n tools/rfc822parse.h\nCopyright: 1999-2000, Werner Koch, Duesseldorf\n 2003-2004, g10 Code GmbH\nLicense: LGPL-3+\n\nFiles: tools/sockprox.c\nCopyright: 2007, g10 Code GmbH\nLicense: GPL-3+\n\nFiles: doc/OpenPGP\nCopyright: 1998-2013 Free Software Foundation, Inc.\n 1997, 1998, 2013 Werner Koch\n 1998 The Internet Society\nLicense: RFC-Reference\n\nFiles: tests/gpgscm/*\nCopyright: 2000, Dimitrios Souflis\n 2016, Justus Winter, Werner Koch\nLicense: TinySCHEME\n\nFiles: debian/*\nCopyright: 1998-2022 Debian GnuPG packagers, including\n Eric Dorland <eric at debian.org>\n Daniel Kahn Gillmor <dkg at fifthhorseman.net>\n NIIBE Yutaka <gniibe at fsij.org>\nLicense: GPL-3+\n\nFiles: debian/org.gnupg.scdaemon.metainfo.xml\nCopyright: 2017 Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nComment: This file is licensed permissively for the sake of AppStream\nLicense: CC0-1.0\n\nLicense: TinySCHEME\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither the name of Dimitrios Souflis nor the names of the\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nLicense: permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE.\n\nLicense: RFC-Reference\n doc/OpenPGP merely cites and references IETF Draft\n draft-ietf-openpgp-formats-07.txt. This is believed to be fair use;\n but if not, it's covered by the source document's license under\n the 'comment on' clause. The license statement follows.\n .\n This document and translations of it may be copied and furnished to\n others, and derivative works that comment on or otherwise explain it\n or assist in its implementation may be prepared, copied, published\n and distributed, in whole or in part, without restriction of any\n kind, provided that the above copyright notice and this paragraph\n are included on all such copies and derivative works. However, this\n document itself may not be modified in any way, such as by removing\n the copyright notice or references to the Internet Society or other\n Internet organizations, except as needed for the purpose of\n developing Internet standards in which case the procedures for\n copyrights defined in the Internet Standards process must be\n followed, or as required to translate it into languages other than\n English.\n .\n The limited permissions granted above are perpetual and will not be\n revoked by the Internet Society or its successors or assigns.\n\n\nLicense: GPL-3+\n GnuPG is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n GnuPG is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2.1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: CC0-1.0\n To the extent possible under law, the author(s) have dedicated all\n copyright and related and neighboring rights to this software to the public\n domain worldwide. This software is distributed without any warranty.\n .\n On Debian systems, the complete text of the CC0 license, version 1.0,\n can be found in /usr/share/common-licenses/CC0-1.0.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/gpgv at 2.2.40-1.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -434,6 +1310,13 @@
"content": "3264acea728df3c48a54f20e9291b965130e306b9d00adac76647049da7196df"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/grep at 3.8-5?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -450,6 +1333,29 @@
"content": "eabec1dde2834f72540d7b93fc5df2625f52611c06d93d61f5cdb12480e0e6a3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-1.3+-no-invariant",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU Gzip\nUpstream-Contact: http://www.gnu.org/software/gzip/\nSource: https://ftp.gnu.org/gnu/gzip\n\nFiles: *\nCopyright: 1999-2022 Free Software Foundation, Inc.\n 1992-1993 Jean-loup Gailly and Mark Adler\nLicense: GPL-3+\n\nFiles: debian/*\nCopyright: 1995-2017 Bdale Garbee <bdale at gag.com>\nLicense: GPL-3+\n\nFiles: doc/* NEWS README\nCopyright: 1999-2022 Free Software Foundation, Inc. http://fsf.org/\n 1992-1993 Jean-loup Gailly\nLicense: GFDL-1.3+-no-invariant\n\nFiles: gzip.1 zless.1\nCopyright: 1998-2022 Free Software Foundation, Inc.\n 1992-1993 Jean-loup Gailly\nLicense: FSF-manpages\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GFDL-1.3+-no-invariant\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, with no Front-Cover Texts, and with no Back-Cover\n Texts.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL-3'.\n\nLicense: FSF-manpages\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n are preserved on all copies.\n .\n Permission is granted to process this file through troff and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "FSF-manpages",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU Gzip\nUpstream-Contact: http://www.gnu.org/software/gzip/\nSource: https://ftp.gnu.org/gnu/gzip\n\nFiles: *\nCopyright: 1999-2022 Free Software Foundation, Inc.\n 1992-1993 Jean-loup Gailly and Mark Adler\nLicense: GPL-3+\n\nFiles: debian/*\nCopyright: 1995-2017 Bdale Garbee <bdale at gag.com>\nLicense: GPL-3+\n\nFiles: doc/* NEWS README\nCopyright: 1999-2022 Free Software Foundation, Inc. http://fsf.org/\n 1992-1993 Jean-loup Gailly\nLicense: GFDL-1.3+-no-invariant\n\nFiles: gzip.1 zless.1\nCopyright: 1998-2022 Free Software Foundation, Inc.\n 1992-1993 Jean-loup Gailly\nLicense: FSF-manpages\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GFDL-1.3+-no-invariant\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, with no Front-Cover Texts, and with no Back-Cover\n Texts.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL-3'.\n\nLicense: FSF-manpages\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n are preserved on all copies.\n .\n Permission is granted to process this file through troff and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/gzip at 1.12-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -466,6 +1372,13 @@
"content": "17d9a2f3c05004499d80e180d2440fd716f84c32b65f09d96c9a024af4d1d0e7"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/hostname at 3.23+nmu1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -482,6 +1395,13 @@
"content": "304383c78f31e3fe419d30f3ddc710c120c412d654bafe2754258da6a7f7c059"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/ifupdown at 0.8.41?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -498,6 +1418,18 @@
"content": "3949151042bb50f568808c316a16b4fd711b44414c754e6076a61b4b936f7d51"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/init at 1.65.2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -514,6 +1446,18 @@
"content": "f9ce24cbf69957dc1851fc55adba0a60b5bc617d51587b6478f2be64786442f1"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/init-system-helpers at 1.65.2?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -530,6 +1474,13 @@
"content": "1204b29e916e836267096d0b9d778106752f821ebde0d281539008b4386d9070"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/iproute2 at 6.1.0-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -546,6 +1497,23 @@
"content": "6ca78fda233f9ca803c5048e29dd558ad7a2af7fe6db53e9fce76d9d750538c8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/iputils-ping at 3:20221126-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -562,6 +1530,18 @@
"content": "243dd7288443d3edec79558925b839f038637964cecb7202a9a0f95fadbeb6e3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MPL-2.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/isc-dhcp-client at 4.4.3-P1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -578,6 +1558,18 @@
"content": "fae84a7dd63ef610ef5ff5e42972252f25e86f79a989aba62755a2cf3f9e3e6a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MPL-2.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/isc-dhcp-common at 4.4.3-P1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -594,6 +1586,18 @@
"content": "e21ae247204fe8a14ac29a5f510227d45b41cd3c41059cc942f2502d25765165"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/kmod at 30+20221128-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -610,6 +1614,34 @@
"content": "3c4ee8ce5e0f625e1169da9584e309c375a8a68e22de5821461d14446825cc1a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GPL-3.0-or-later OR Less",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This package was debianized by Thomas Schoepf <schoepf at debian.org> on\n Wed, 8 Sep 1999 13:28:20 +0200.\n .\n The previous maintainers were Darren Stalder <torin at daft.com>,\n Erick Branderhorst <branderh at debian.org> and\n Bill Mitchell <mitchell at mdd.comm.mot.com>.\nSource: http://www.greenwoodsoftware.com/less/\nUpstream-Contact: Mark Nudelman <markn at greenwoodsoftware.com>\n\nFiles: *\nCopyright: (C) 1984-2021 Mark Nudelman\nLicense: GPL-3+ or Less\n This program is free software. You may redistribute it and/or\n modify it under the terms of either:\n .\n 1. The GNU General Public License, as published by the Free\n Software Foundation; either version 3, or (at your option) any\n later version. A copy of this license is in the file\n /usr/share/common-licenses/GPL-3\n or\n 2. The Less License.\n\nLicense: GPL-3+\n You should have received a copy of the GNU General Public License\n along with the source for less; see the file COPYING.\n If not, write to the Free Software Foundation, 59 Temple Place,\n Suite 330, Boston, MA 02111-1307, USA.\n\nLicense: Less\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice in the documentation and/or other materials provided with\n the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: scrsize.c\nCopyright: (C) 1984-2021 Mark Nudelman\n (c) 1987, X Consortium\nLicense: GPL-3+ or Less, and X11\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other\n dealings in this Software without prior written authorization from the X\n Consortium.\n\nFiles: regexp.c\nCopyright: (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\nLicense: Spencer-86\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nFiles: mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n Created: 1993-05-16\n Last modified: 1994-03-25\n Public domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later OR Less, AND X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This package was debianized by Thomas Schoepf <schoepf at debian.org> on\n Wed, 8 Sep 1999 13:28:20 +0200.\n .\n The previous maintainers were Darren Stalder <torin at daft.com>,\n Erick Branderhorst <branderh at debian.org> and\n Bill Mitchell <mitchell at mdd.comm.mot.com>.\nSource: http://www.greenwoodsoftware.com/less/\nUpstream-Contact: Mark Nudelman <markn at greenwoodsoftware.com>\n\nFiles: *\nCopyright: (C) 1984-2021 Mark Nudelman\nLicense: GPL-3+ or Less\n This program is free software. You may redistribute it and/or\n modify it under the terms of either:\n .\n 1. The GNU General Public License, as published by the Free\n Software Foundation; either version 3, or (at your option) any\n later version. A copy of this license is in the file\n /usr/share/common-licenses/GPL-3\n or\n 2. The Less License.\n\nLicense: GPL-3+\n You should have received a copy of the GNU General Public License\n along with the source for less; see the file COPYING.\n If not, write to the Free Software Foundation, 59 Temple Place,\n Suite 330, Boston, MA 02111-1307, USA.\n\nLicense: Less\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice in the documentation and/or other materials provided with\n the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: scrsize.c\nCopyright: (C) 1984-2021 Mark Nudelman\n (c) 1987, X Consortium\nLicense: GPL-3+ or Less, and X11\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other\n dealings in this Software without prior written authorization from the X\n Consortium.\n\nFiles: regexp.c\nCopyright: (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\nLicense: Spencer-86\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nFiles: mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n Created: 1993-05-16\n Last modified: 1994-03-25\n Public domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Spencer-86"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/less at 590-2.1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -626,6 +1658,18 @@
"content": "8be9df5795114bfe90e2be3d208ef47a5edd3fc7b3e20d387a597486d444e5e2"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libacl1 at 2.3.1-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -642,6 +1686,31 @@
"content": "4b79f49eafc2017374da9ec206b5495433eadd2b1ea078c3895c99e72825e9d3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: AppArmor\nUpstream-Contact: apparmor at lists.ubuntu.com\nSource: https://launchpad.net/apparmor\n\nFiles: *\nCopyright: 1998-2010 Novell/SuSE/Immunix\n 2008-2014 Canonical Ltd.\nLicense: GPL-2+\n\nFiles: changehat/pam_apparmor/*\nCopyright: 2006 SUSE Linux Products GmbH, Nuernberg, Germany\n 2002, 2003, 2004 SuSE GmbH Nuernberg, Germany\n 2002-2006 Novell/SuSE\n 2010 Canonical Ltd.\nLicense: BSD-3-clause or GPL-2+\n\nFiles: changehat/mod_apparmor/*\nCopyright: 2004-2006 Novell\n 2014 Canonical Ltd.\nLicense: LGPL-2.1+\n\nFiles: libraries/libapparmor/* parser/libapparmor_re/*\nCopyright: 1999-2008 Novell\n 2009-2013 Canonical Ltd.\nLicense: LGPL-2.1+\n\nFiles: profiles/apparmor.d/abstractions/mysql\nCopyright: 2002-2006 Novell/SUSE\n 2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.sbin.dnsmasq\nCopyright: 2009 John Dong <jdong at ubuntu.com>\n 2010 Canonical Ltd.\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/sbin.syslog-ng\nCopyright: 2006-2009 Novell/SUSE\n 2006 Christian Boltz\n 2010 Canonical Ltd.\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.*\nCopyright: 2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.auth\nCopyright: 2013 Christian Boltz\n 2014 Christian Wittmer\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.deliver\nCopyright: 2009 Dulmandakh Sukhbaatar <dulmandakh at gmail.com>\n 2009-2014 Canonical Ltd.\n 2011-2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.dovecot-auth\nCopyright: 2009-2013 Canonical Ltd.\n 2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.imap profiles/apparmor.d/usr.lib.dovecot.pop3\nCopyright: 2009-2010 Canonical Ltd.\n 2011-2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.imap-login profiles/apparmor.d/usr.lib.dovecot.pop3-login\nCopyright: 2009-2011 Canonical Ltd.\n 2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.managesieve\nCopyright: 2013 Christian Boltz\n 2014 Christian Wittmer\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.managesieve-login\nCopyright: 2009 Dulmandakh Sukhbaatar <dulmandakh at gmail.com>\n 2009-2011 Canonical Ltd.\n 2013 Christian Boltz\n 2014 Christian Wittmer\nLicense: GPL-2\n\nFiles: profiles/apparmor/profiles/extras/usr.bin.mlmmj-make-ml.sh\nCopyright: 2002-2005 Novell/SUSE\nLicense: GPL-2\n\nFiles: profiles/apparmor/profiles/extras/usr.bin.passwd\nCopyright: 2006 Volker Kuhlmann\nLicense: GPL-2\n\nFiles: debian/*\nCopyright: 2007-2011 Canonical Ltd.\n 2014-2022 intrigeri\nLicense: GPL-2\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: LGPL-2.1+\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libapparmor1 at 3.0.8-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -658,6 +1727,28 @@
"content": "ccab743f6784b4cc7bd69e1810630edaf726cd69c1e735e39a16266d470bfdc0"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libapt-pkg6.0 at 2.6.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -674,6 +1765,24 @@
"content": "4a8155b06270b88eed34d132acfc8ccc0b85499e1c4bfd7f31f8b199af42b1de"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "CC0 OR Apache-2.0",
+ "text": {
+ "content": "Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: phc-winner-argon2\nSource: https://github.com/P-H-C/phc-winner-argon2\nUpstream-Contact: https://github.com/P-H-C/phc-winner-argon2/issues\n\nFiles: *\nCopyright: 2015, Daniel Dinu\n 2015, Dmitry Khovratovich\n 2015, Jean-Philippe Aumasson\n 2015, Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: src/blake2/*\nCopyright: 2013-2015, Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: src/encoding.c\nCopyright: 2015, Thomas Pornin\nLicense: CC0 or Apache-2.0\n\nFiles: debian/*\nCopyright: 2016, Luca Bruno <lucab at debian.org>\nLicense: CC0\n\nFiles: debian/argon2.1\nCopyright: 2016, Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nLicense: CC0\n\nLicense: CC0\n /Statement of Purpose/\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work for\n the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the\n ideal of a free culture and the further production of creative, cultural\n and scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that he or\n she is an owner of Copyright and Related Rights in the Work, voluntarily\n elects to apply CC0 to the Work and publicly distribute the Work under\n its terms, with knowledge of his or her Copyright and Related Rights in\n the Work and the meaning and intended legal effect of CC0 on those rights.\n .\n *1. Copyright and Related Rights.* A Work made available under CC0 may\n be protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are not\n limited to, the following:\n .\n 1. the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n 5. rights protecting the extraction, dissemination, use and reuse of\n data in a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of\n the European Parliament and of the Council of 11 March 1996 on the\n legal protection of databases, and under any national implementation\n thereof, including any amended or successor version of such\n directive); and\n 7. other similar, equivalent or corresponding rights throughout the\n world based on applicable law or treaty, and any national\n implementations thereof.\n .\n *2. Waiver.* To the greatest extent permitted by, but not in\n contravention of, applicable law, Affirmer hereby overtly, fully,\n permanently, irrevocably and unconditionally waives, abandons, and\n surrenders all of Affirmer's Copyright and Related Rights and associated\n claims and causes of action, whether now known or unknown (including\n existing as well as future claims and causes of action), in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii) in\n any current or future medium and for any number of copies, and (iv) for\n any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n *3. Public License Fallback.* Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby grants\n to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license to\n exercise Affirmer's Copyright and Related Rights in the Work (i) in all\n territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii) in\n any current or future medium and for any number of copies, and (iv) for\n any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and\n in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in the\n Work or (ii) assert any associated claims and causes of action with\n respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n *4. Limitations and Disclaimers.*\n .\n 1. No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties of\n title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any use\n of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to\n this CC0 or use of the Work.\n\nLicense: Apache-2.0\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n https://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n .\n On Debian systems, the complete text of the Apache version 2.0 license\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "CC0",
+ "text": {
+ "content": "Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: phc-winner-argon2\nSource: https://github.com/P-H-C/phc-winner-argon2\nUpstream-Contact: https://github.com/P-H-C/phc-winner-argon2/issues\n\nFiles: *\nCopyright: 2015, Daniel Dinu\n 2015, Dmitry Khovratovich\n 2015, Jean-Philippe Aumasson\n 2015, Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: src/blake2/*\nCopyright: 2013-2015, Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: src/encoding.c\nCopyright: 2015, Thomas Pornin\nLicense: CC0 or Apache-2.0\n\nFiles: debian/*\nCopyright: 2016, Luca Bruno <lucab at debian.org>\nLicense: CC0\n\nFiles: debian/argon2.1\nCopyright: 2016, Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nLicense: CC0\n\nLicense: CC0\n /Statement of Purpose/\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work for\n the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the\n ideal of a free culture and the further production of creative, cultural\n and scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that he or\n she is an owner of Copyright and Related Rights in the Work, voluntarily\n elects to apply CC0 to the Work and publicly distribute the Work under\n its terms, with knowledge of his or her Copyright and Related Rights in\n the Work and the meaning and intended legal effect of CC0 on those rights.\n .\n *1. Copyright and Related Rights.* A Work made available under CC0 may\n be protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are not\n limited to, the following:\n .\n 1. the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n 5. rights protecting the extraction, dissemination, use and reuse of\n data in a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of\n the European Parliament and of the Council of 11 March 1996 on the\n legal protection of databases, and under any national implementation\n thereof, including any amended or successor version of such\n directive); and\n 7. other similar, equivalent or corresponding rights throughout the\n world based on applicable law or treaty, and any national\n implementations thereof.\n .\n *2. Waiver.* To the greatest extent permitted by, but not in\n contravention of, applicable law, Affirmer hereby overtly, fully,\n permanently, irrevocably and unconditionally waives, abandons, and\n surrenders all of Affirmer's Copyright and Related Rights and associated\n claims and causes of action, whether now known or unknown (including\n existing as well as future claims and causes of action), in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii) in\n any current or future medium and for any number of copies, and (iv) for\n any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n *3. Public License Fallback.* Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby grants\n to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license to\n exercise Affirmer's Copyright and Related Rights in the Work (i) in all\n territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii) in\n any current or future medium and for any number of copies, and (iv) for\n any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and\n in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in the\n Work or (ii) assert any associated claims and causes of action with\n respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n *4. Limitations and Disclaimers.*\n .\n 1. No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties of\n title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any use\n of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to\n this CC0 or use of the Work.\n\nLicense: Apache-2.0\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n https://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n .\n On Debian systems, the complete text of the Apache version 2.0 license\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libargon2-1 at 0~20171227-0.3+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -690,6 +1799,18 @@
"content": "c4945123d66d0503ba42e2fc0585abc76d0838978c6d277b9cc37a4da25d1a34"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libattr1 at 1:2.5.1-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -706,6 +1827,18 @@
"content": "17d0341ca6ce604ce59c296780ac2c2a24141a769823c50669af942c025e6591"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libaudit-common at 1:3.0.9-1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -722,6 +1855,18 @@
"content": "30954df4b5a7c505661ba8ae5e6ea94f5805e408899fb400783bb166eb5ff306"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libaudit1 at 1:3.0.9-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -738,6 +1883,71 @@
"content": "151f59ca2b73ce8f85a576980f019dbbf9d44dd6ff4331f7954163e3704c1c06"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libblkid1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -754,22 +1964,156 @@
"content": "1b3787787b884d835ec1008ed51e62cd9256ce1ed8a0d2917d9965af08140674"
}
],
- "purl": "pkg:deb/debian/libbpf1 at 1:1.1.0-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
- },
- {
- "type": "library",
- "name": "libbsd0",
- "version": "0.11.7-2",
- "hashes": [
+ "licenses": [
{
- "alg": "MD5",
- "content": "5d382c22b266715b019f46576a3f3146"
+ "license": {
+ "name": "LGPL-2.1-only OR BSD-2-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libbpf\nSource: https://github.com/libbpf/libbpf\n\nFiles: *\nCopyright: 2013-2015 Alexei Starovoitov <ast at kernel.org>\n 2015 Wang Nan <wangnan0 at huawei.com>\n 2015 Huawei Inc.\n 2018, 2019, 2021 Facebook\n 2017 Nicira, Inc.\n 2019 Isovalent, Inc.\n 2019 Netronome Systems, Inc.\n 2003-2013 Thomas Graf <tgraf at suug.ch>\n 2018-2019 Intel Corporation.\n 2022 Meta Platforms, Inc. and affiliates.\nLicense: LGPL-2.1 or BSD-2-Clause\n\nFiles: docs/conf.py\nCopyright: Grant Seltzer <grantseltzer at gmail.com>\nLicense: GPL-2.0\n\nFiles: include/uapi/linux/bpf.h\n include/uapi/linux/bpf_common.h\n include/uapi/linux/btf.h\n include/uapi/linux/if_link.h\n include/uapi/linux/if_xdp.h\n include/uapi/linux/netlink.h\nCopyright: 2011-2014 PLUMgrid, http://plumgrid.com\n 2018 Facebook\n 2018 Intel Corporation.\nLicense: GPL-2 with Linux-syscall-note exception\n\nFiles: debian/*\nCopyright: 2018 Ben Hutchings <ben at decadent.org.uk>\n 2018 Hilko Bengen <bengen at debian.org>\n 2018 Luca Boccassi <bluca at debian.org>\n 2020 Sudip Mukherjee <sudipm.mukherjee at gmail.com>\nLicense: GPL-2+\n\nLicense: GPL-2.0\n This program is free software; you can redistribute it\n and/or modify it under the terms of the GNU General Public\n License version 2 as published by the Free Software\n Foundation.\n .\n This program is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied\n warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. See the GNU General Public License for more\n details.\n .\n You should have received a copy of the GNU General Public\n License along with this package; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n Boston, MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2.1\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation;\n version 2.1 of the License (not later!)\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <http://www.gnu.org/licenses>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: GPL-2 with Linux-syscall-note exception\n NOTE! This copyright does *not* cover user programs that use kernel services\n by normal system calls - this is merely considered normal use of the kernel,\n and does *not* fall under the heading of \"derived work\". Also note that the\n GPL below is copyrighted by the Free Software Foundation, but the instance of\n code that it refers to (the Linux kernel) is copyrighted by me and others who\n actually wrote it.\n .\n Also note that the only valid version of the GPL as far as the kernel is\n concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x\n or whatever), unless explicitly otherwise stated.\n .\n Linus Torvalds\n .\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian and systems the full text of the GNU General Public\n License version 2 can be found in the file\n \"/usr/share/common-licenses/GPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
+ "purl": "pkg:deb/debian/libbpf1 at 1:1.1.0-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
+ },
+ {
+ "type": "library",
+ "name": "libbsd0",
+ "version": "0.11.7-2",
+ "hashes": [
+ {
+ "alg": "MD5",
+ "content": "5d382c22b266715b019f46576a3f3146"
},
{
"alg": "SHA-256",
"content": "bb31cc8b40f962a85b2cec970f7f79cc704a1ae4bad24257a822055404b2c60b"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-4-clause-Niels-Provos",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-Regents",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-Regents AND BSD-2-clause-NetBSD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-author",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-John-Birrell",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "libutil-David-Nugent"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-2-clause-NetBSD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-2-clause-verbatim",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-2-clause-author",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "ISC-Original",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libbsd0 at 0.11.7-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -786,6 +2130,21 @@
"content": "54149da3f44b22d523b26b692033b84503d822cc5122fed606ea69cc83ca5aeb"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-variant",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: bzip2\nSource: http://www.bzip.org/\n\nFiles: *\nCopyright: 1996-2010 Julian R Seward <jseward at bzip.org>\nLicense: BSD-variant\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/*\nCopyright: 2018 Nicolas Boulenguez <nicolas.boulenguez at free.fr>\n\t 2012-2015 Santiago Ruano Rinc\u00f3n <santiago at debian.org>\n 2014 Canonical Ltd.\n 2004-2011 Anibal Monsalve Salazar <anibal at debian.org>\n 1999-2002 Philippe Troin <phil at fifi.org>\n 1997-1999 Anthony Fok <foka at debian.org>\nLicense: GPL-2\n The full text of the GNU General Public License version 2\n can be found in /usr/share/common-licenses/GPL-2.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libbz2-1.0 at 1.0.8-5+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -802,6 +2161,21 @@
"content": "687687d1ace90565cc451b1be527914246123968b747c823e276cd7f8b57ba3d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-variant",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: bzip2\nSource: http://www.bzip.org/\n\nFiles: *\nCopyright: 1996-2010 Julian R Seward <jseward at bzip.org>\nLicense: BSD-variant\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/*\nCopyright: 2018 Nicolas Boulenguez <nicolas.boulenguez at free.fr>\n\t 2012-2015 Santiago Ruano Rinc\u00f3n <santiago at debian.org>\n 2014 Canonical Ltd.\n 2004-2011 Anibal Monsalve Salazar <anibal at debian.org>\n 1999-2002 Philippe Troin <phil at fifi.org>\n 1997-1999 Anthony Fok <foka at debian.org>\nLicense: GPL-2\n The full text of the GNU General Public License version 2\n can be found in /usr/share/common-licenses/GPL-2.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libc-bin at 2.36-9+deb12u7?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -818,6 +2192,21 @@
"content": "eba944bd99c2f5142baf573e6294a70f00758083bc3c2dca4c9e445943a3f8e6"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-variant",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: bzip2\nSource: http://www.bzip.org/\n\nFiles: *\nCopyright: 1996-2010 Julian R Seward <jseward at bzip.org>\nLicense: BSD-variant\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/*\nCopyright: 2018 Nicolas Boulenguez <nicolas.boulenguez at free.fr>\n\t 2012-2015 Santiago Ruano Rinc\u00f3n <santiago at debian.org>\n 2014 Canonical Ltd.\n 2004-2011 Anibal Monsalve Salazar <anibal at debian.org>\n 1999-2002 Philippe Troin <phil at fifi.org>\n 1997-1999 Anthony Fok <foka at debian.org>\nLicense: GPL-2\n The full text of the GNU General Public License version 2\n can be found in /usr/share/common-licenses/GPL-2.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libc6 at 2.36-9+deb12u7?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -834,6 +2223,23 @@
"content": "b4b54769c77e4a71c8b33aee4d600ba28a9994a1c6f60d55d4ebe7fc44882e07"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcap-ng0 at 0.8.3-1+b3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -850,6 +2256,24 @@
"content": "b36fefe9867f9e59b540f952e957a72ebdc241e997179d826da19a9511ade4a3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libcap\nUpstream-Contact: Andrew G. Morgan <morgan at kernel.org>\nSource: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/\n\nFiles: *\nCopyright: 1997-2016 Andrew G. Morgan <morgan at linux.kernel.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/cap_text.c\nCopyright: 1997-2008 Andrew G. Morgan <morgan at linux.kernel.org>\n 1997 Andrew Main <zefram at dcs.warwick.ac.uk>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/capability.h\nCopyright: 1997-2008 Andrew G. Morgan <morgan at kernel.org>\n 1997 Aleph One\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/securebits.h\nCopyright: 2010 Serge Hallyn <serue at us.ibm.com>\nLicense: BSD-3-clause or GPL-2\n\nFiles: progs/old/sucap.c\nCopyright: 1998 Finn Arne Gangstad <finnag at guardian.no>\nLicense: BSD-3-clause or GPL-2\n\nFiles: contrib/*\nCopyright: 2006, Matt Kern <matt.kern at undue.org>\n 2008, Andrew G. Morgan <morgan at linux.kernel.org>\n\t 2008, Chris Friedhoff <chris at friedhoff.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright: 2014, Daniel Baumann <mail at daniel-baumann.ch>\n 2014-2022, Christian Kastner <ckk at debian.org>\nLicense: BSD-3-clause or GPL-2+\n\nFiles: debian/manpages/*\nCopyright: 1997-2014 Andrew G. Morgan <morgan at linux.kernel.org>\n 2011 Scott Schaefer <saschaefer at neurodiverse.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/patches/*\nCopyright: 2011, Andrew Straw <strawman at astraw.com>\n 2011, Zhi Li <lizhi1215 at gmail.com>\n 2014-2016, Christian Kastner <ckk at debian.org>\n 2015, Helmut Grohne <helmut at subdivi.de>\nLicense: BSD-3-clause or GPL-2+\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms of libcap, with\n or without modification, are permitted provided that the following\n conditions are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libcap\nUpstream-Contact: Andrew G. Morgan <morgan at kernel.org>\nSource: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/\n\nFiles: *\nCopyright: 1997-2016 Andrew G. Morgan <morgan at linux.kernel.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/cap_text.c\nCopyright: 1997-2008 Andrew G. Morgan <morgan at linux.kernel.org>\n 1997 Andrew Main <zefram at dcs.warwick.ac.uk>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/capability.h\nCopyright: 1997-2008 Andrew G. Morgan <morgan at kernel.org>\n 1997 Aleph One\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/securebits.h\nCopyright: 2010 Serge Hallyn <serue at us.ibm.com>\nLicense: BSD-3-clause or GPL-2\n\nFiles: progs/old/sucap.c\nCopyright: 1998 Finn Arne Gangstad <finnag at guardian.no>\nLicense: BSD-3-clause or GPL-2\n\nFiles: contrib/*\nCopyright: 2006, Matt Kern <matt.kern at undue.org>\n 2008, Andrew G. Morgan <morgan at linux.kernel.org>\n\t 2008, Chris Friedhoff <chris at friedhoff.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright: 2014, Daniel Baumann <mail at daniel-baumann.ch>\n 2014-2022, Christian Kastner <ckk at debian.org>\nLicense: BSD-3-clause or GPL-2+\n\nFiles: debian/manpages/*\nCopyright: 1997-2014 Andrew G. Morgan <morgan at linux.kernel.org>\n 2011 Scott Schaefer <saschaefer at neurodiverse.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/patches/*\nCopyright: 2011, Andrew Straw <strawman at astraw.com>\n 2011, Zhi Li <lizhi1215 at gmail.com>\n 2014-2016, Christian Kastner <ckk at debian.org>\n 2015, Helmut Grohne <helmut at subdivi.de>\nLicense: BSD-3-clause or GPL-2+\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms of libcap, with\n or without modification, are permitted provided that the following\n conditions are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcap2 at 1:2.66-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -866,6 +2290,24 @@
"content": "72da6038877cc5c7d71538a547e22d03346b1ef99a35169d7ff3500f5675df1e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libcap\nUpstream-Contact: Andrew G. Morgan <morgan at kernel.org>\nSource: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/\n\nFiles: *\nCopyright: 1997-2016 Andrew G. Morgan <morgan at linux.kernel.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/cap_text.c\nCopyright: 1997-2008 Andrew G. Morgan <morgan at linux.kernel.org>\n 1997 Andrew Main <zefram at dcs.warwick.ac.uk>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/capability.h\nCopyright: 1997-2008 Andrew G. Morgan <morgan at kernel.org>\n 1997 Aleph One\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/securebits.h\nCopyright: 2010 Serge Hallyn <serue at us.ibm.com>\nLicense: BSD-3-clause or GPL-2\n\nFiles: progs/old/sucap.c\nCopyright: 1998 Finn Arne Gangstad <finnag at guardian.no>\nLicense: BSD-3-clause or GPL-2\n\nFiles: contrib/*\nCopyright: 2006, Matt Kern <matt.kern at undue.org>\n 2008, Andrew G. Morgan <morgan at linux.kernel.org>\n\t 2008, Chris Friedhoff <chris at friedhoff.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright: 2014, Daniel Baumann <mail at daniel-baumann.ch>\n 2014-2022, Christian Kastner <ckk at debian.org>\nLicense: BSD-3-clause or GPL-2+\n\nFiles: debian/manpages/*\nCopyright: 1997-2014 Andrew G. Morgan <morgan at linux.kernel.org>\n 2011 Scott Schaefer <saschaefer at neurodiverse.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/patches/*\nCopyright: 2011, Andrew Straw <strawman at astraw.com>\n 2011, Zhi Li <lizhi1215 at gmail.com>\n 2014-2016, Christian Kastner <ckk at debian.org>\n 2015, Helmut Grohne <helmut at subdivi.de>\nLicense: BSD-3-clause or GPL-2+\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms of libcap, with\n or without modification, are permitted provided that the following\n conditions are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libcap\nUpstream-Contact: Andrew G. Morgan <morgan at kernel.org>\nSource: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/\n\nFiles: *\nCopyright: 1997-2016 Andrew G. Morgan <morgan at linux.kernel.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/cap_text.c\nCopyright: 1997-2008 Andrew G. Morgan <morgan at linux.kernel.org>\n 1997 Andrew Main <zefram at dcs.warwick.ac.uk>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/capability.h\nCopyright: 1997-2008 Andrew G. Morgan <morgan at kernel.org>\n 1997 Aleph One\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/securebits.h\nCopyright: 2010 Serge Hallyn <serue at us.ibm.com>\nLicense: BSD-3-clause or GPL-2\n\nFiles: progs/old/sucap.c\nCopyright: 1998 Finn Arne Gangstad <finnag at guardian.no>\nLicense: BSD-3-clause or GPL-2\n\nFiles: contrib/*\nCopyright: 2006, Matt Kern <matt.kern at undue.org>\n 2008, Andrew G. Morgan <morgan at linux.kernel.org>\n\t 2008, Chris Friedhoff <chris at friedhoff.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright: 2014, Daniel Baumann <mail at daniel-baumann.ch>\n 2014-2022, Christian Kastner <ckk at debian.org>\nLicense: BSD-3-clause or GPL-2+\n\nFiles: debian/manpages/*\nCopyright: 1997-2014 Andrew G. Morgan <morgan at linux.kernel.org>\n 2011 Scott Schaefer <saschaefer at neurodiverse.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/patches/*\nCopyright: 2011, Andrew Straw <strawman at astraw.com>\n 2011, Zhi Li <lizhi1215 at gmail.com>\n 2014-2016, Christian Kastner <ckk at debian.org>\n 2015, Helmut Grohne <helmut at subdivi.de>\nLicense: BSD-3-clause or GPL-2+\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms of libcap, with\n or without modification, are permitted provided that the following\n conditions are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcap2-bin at 1:2.66-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -882,6 +2324,59 @@
"content": "8010e4285276bb344c05ae780deae2fffb45e237116c3a78481365c5954125ec"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcom-err2 at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -898,6 +2393,59 @@
"content": "f5f60a5cdfd4e4eaa9438ade5078a57741a7a78d659fcb0c701204f523e8bd29"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcrypt1 at 1:4.4.33-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -914,6 +2462,46 @@
"content": "b9a607c219be5ef04bc0fcfaec3752d9a1ba07df8d3bb2aed9bf348f90d1b6cc"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH OpenSSL exception"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.1-or-later WITH OpenSSL exception"
+ }
+ },
+ {
+ "license": {
+ "name": "CC0 OR Apache-2.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Contact: Milan Broz <mbroz at redhat.com>\nSource: https://gitlab.com/cryptsetup/cryptsetup\nUpstream-Name: cryptsetup\n\nFiles: *\nCopyright: \u00a9 2004 Christophe Saout <christophe at saout.de>\n \u00a9 2004-2008 Clemens Fruhwirth <clemens at endorphin.org>\n \u00a9 2008-2023 Red Hat, Inc.\n \u00a9 2008-2023 Milan Broz <gmazyland at gmail.com>\nLicense: GPL-2+ with OpenSSL exception\n\nFiles: debian/*\nCopyright: \u00a9 2004-2005 Wesley W. Terpstra <terpstra at debian.org>\n \u00a9 2005-2006 Michael Gebetsroither <michael.geb at gmx.at>\n \u00a9 2006-2008 David H\u00e4rdeman <david at hardeman.nu>\n \u00a9 2005-2015 Jonas Meurer <jonas at freesources.org>\n \u00a9 2016-2023 Guilhem Moulin <guilhem at debian.org>\nLicense: GPL-2+\n\nFiles: debian/scripts/suspend/cryptsetup-suspend.c\nCopyright: \u00a9 2018 Guilhem Moulin <guilhem at debian.org>\n \u00a9 2018-2020 Jonas Meurer <jonas at freesources.org>\nLicense: GPL-3+\n\nFiles: debian/scripts/suspend/cryptsetup-suspend-wrapper\nCopyright: \u00a9 2019-2020 Tim <tim at systemli.org>\n \u00a9 2019-2020 Jonas Meurer <jonas at freesources.org>\n \u00a9 2020-2022 Guilhem Moulin <guilhem at debian.org>\nLicense: GPL-3+\n\nFiles: debian/askpass.c debian/scripts/passdev.c\nCopyright: \u00a9 2008 David H\u00e4rdeman <david at hardeman.nu>\nLicense: GPL-2+\n\nFiles: debian/initramfs/cryptroot-unlock\nCopyright: \u00a9 2015-2018 Guilhem Moulin <guilhem at debian.org>\nLicense: GPL-3+\n\nFiles: debian/README.opensc\nCopyright: \u00a9 2008 Benjamin Kiessling <benjaminkiessling at bttec.org>\nLicense: GPL-2+\n\nFiles: debian/scripts/cryptdisks_start\nCopyright: \u00a9 2007 Jon Dowland <jon at alcopop.org>\nLicense: GPL-2+\n\nFiles: debian/scripts/luksformat\nCopyright: \u00a9 2005 Canonical Ltd.\nLicense: GPL-2+\n\nFiles: debian/scripts/decrypt_gnupg-sc debian/README.gnupg-sc debian/initramfs/hooks/cryptgnupg-sc debian/initramfs/scripts/local-bottom/cryptgnupg-sc\nCopyright: \u00a9 2005-2015 Jonas Meurer <jonas at freesources.org>\n \u00a9 2016-2018 Guilhem Moulin <guilhem at debian.org>\n \u00a9 2009,2014 Peter Lebbing <peter at digitalbrains.com>\n \u00a9 2018 Erik Nellessen\nLicense: GPL-2+\n\nFiles: debian/tests/*\nCopyright: \u00a9 2021-2022 Guilhem Moulin <guilhem at debian.org>\nLicense: GPL-3+\n\nFiles: docs/examples/* tests/all-symbols-test.c\nCopyright: \u00a9 2011-2023 Red Hat, Inc.\nLicense: LGPL-2.1+\n\nFiles: lib/bitlk/*\nCopyright: \u00a9 2019-2023 Red Hat, Inc.\n \u00a9 2019-2023 Milan Broz <gmazyland at gmail.com>\n \u00a9 2019-2023 Vojtech Trefny\nLicense: LGPL-2.1+\n\nFiles: tokens/ssh/*\nCopyright: \u00a9 2016-2023 Milan Broz <gmazyland at gmail.com>\n \u00a9 2020-2023 Vojtech Trefny\nLicense: LGPL-2.1+\n\nFiles: tokens/ssh/cryptsetup-ssh.c\nCopyright: \u00a9 2016-2023 Milan Broz <gmazyland at gmail.com>\n \u00a9 2021-2023 Vojtech Trefny\nLicense: GPL-2+\n\nFiles: lib/crypto_backend/* lib/integrity/* lib/loopaes/* lib/tcrypt/* lib/verity/*\nCopyright: \u00a9 2009-2023 Red Hat, Inc.\n \u00a9 2010-2023 Milan Broz <gmazyland at gmail.com>\nLicense: LGPL-2.1+\n\nFiles: lib/crypto_backend/base64.c\nCopyright: \u00a9 2010 Lennart Poettering\n \u00a9 2021-2023 Milan Broz <gmazyland at gmail.com>\nLicense: LGPL-2.1+\n\nFiles: lib/crypto_backend/utf8.c\nCopyright: \u00a9 2010 Lennart Poettering\n \u00a9 2021-2023 Vojtech Trefny\n \u00a9 1999 Tom Tromey\n \u00a9 2000 Red Hat, Inc.\nLicense: GPL-2+\n\nFiles: lib/crypto_backend/crypto_openssl.c\nCopyright: \u00a9 2009-2023 Red Hat, Inc.\n \u00a9 2010-2023 Milan Broz <gmazyland at gmail.com>\nLicense: LGPL-2.1+ with OpenSSL exception\n\nFiles: lib/fvault2/fvault2.c lib/fvault2/fvault2.h\nCopyright: \u00a9 2021-2022 Pavel Tobias\nLicense: LGPL-2.1+ with OpenSSL exception\n\nFiles: lib/keyslot_context.c lib/keyslot_context.h\nCopyright: \u00a9 2022-2023 Red Hat, Inc.\n \u00a9 2022-2023 Ondrej Kozina <okozina at redhat.com>\nLicense: GPL-2+\n\nFiles: lib/crypto_backend/argon2/*\nCopyright: \u00a9 2015 Daniel Dinu\n \u00a9 2015 Dmitry Khovratovich\n \u00a9 2015 Jean-Philippe Aumasson\n \u00a9 2015 Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: lib/crypto_backend/argon2/encoding.c\nCopyright: \u00a9 2015 Thomas Pornin <pornin at bolet.org>\nLicense: CC0 or Apache-2.0\n\nFiles: lib/crypto_backend/crc32.c\nCopyright: \u00a9 1986 Gary S. Brown\nLicense: public-domain\n Gary S. Brown's license is as follows:\n .\n You may use this program, or code or tables extracted from it, as\n desired without restriction.\n\nFiles: lib/bitops.h\nCopyright: \u00a9 Karel Zak <kzak at redhat.com>\nLicense: public-domain\n Karel Zak's license is as follows:\n .\n No copyright is claimed. This code is in the public domain; do with it\n what you wish.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+ with OpenSSL exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n In addition, as a special exception, the copyright holders give\n permission to link the code of portions of this program with the\n OpenSSL library under certain conditions as described in each\n individual source file, and distribute linked combinations including\n the two. You must obey the GNU General Public License in all respects\n for all of the code used other than OpenSSL. If you modify file(s)\n with this exception, you may extend this exception to your version of\n the file(s), but you are not obligated to do so. If you do not wish to\n do so, delete this exception statement from your version. If you\n delete this exception statement from all source files in the program,\n then also delete it here.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3`.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 2.1 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-2.1+ with OpenSSL exception\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 2.1 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n .\n In addition, as a special exception, the copyright holders give\n permission to link the code of portions of this program with the\n OpenSSL library under certain conditions as described in each\n individual source file, and distribute linked combinations including\n the two. You must obey the GNU Lesser General Public License in all\n respects for all of the code used other than OpenSSL. If you modify\n file(s) with this exception, you may extend this exception to your\n version of the file(s), but you are not obligated to do so. If you do\n not wish to do so, delete this exception statement from your version.\n If you delete this exception statement from all source files in the\n program, then also delete it here.\n\nLicense: CC0\n You may use this work under the terms of a Creative Commons CC0 1.0\n License/Waiver.\n .\n On Debian systems, the complete text of the Creative Commons CC0 1.0\n Universal license can be found in `/usr/share/common-licenses/CC0-1.0'.\n\nLicense: Apache-2.0\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n https://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n .\n On Debian systems, the complete text of the Apache version 2.0 license\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcryptsetup12 at 2:2.6.1-4~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -930,6 +2518,89 @@
"content": "7dc5127b8dd0da80e992ba594954c005ae4359d839a24eb65d0d8129b5235c84"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Ms-PL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT-old",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "TCL-like",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-fjord",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-1.0 OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libdb5.3 at 5.3.28+dfsg2-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -946,6 +2617,18 @@
"content": "7d2b2b700bae0ba67a13655fabba6a98da3f6ce7dee43d1ee0ac433b7ca1d947"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libdebconfclient0 at 0.270?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -962,6 +2645,28 @@
"content": "aaa78ca236055fedccf637eacf7bda02bf1980b2db668dccd202b04d0d2cfe04"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libdevmapper1.02.1 at 2:1.02.185-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -978,6 +2683,13 @@
"content": "1cf14abf2716d3279db12d0657a5737cf70074a1e71d3bdf73206625e3c89ce6"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libedit2 at 3.1-20221030-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -994,6 +2706,44 @@
"content": "619add379c606b3ac6c1a175853b918e6939598a83d8ebadf3bdfd50d10b3c8c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Kurt Roeckx <kurt at roeckx.be>.\nUpstream-Name: elfutils\nUpstream-Contact: elfutils-devel at sourceware.org\nSource: https://sourceware.org/elfutils/ftp/\n\nFiles: *\nCopyright: (C) 1996-2019 Red Hat, Inc.\n (C) 2022 Mark J. Wielaard <mark at klomp.org>\n (C) 2015, 2016 Oracle, Inc.\n (C) 2017 The Qt Company\n (C) 2018, 2021 Facebook, Inc.\n (C) 2021 Runsafe Security, Inc.\n (C) H.J. Lu <hjl.tools at gmail.com>, 2015.\n (C) 2020 Tom Tromey\nComment: Written by:\n Ulrich Drepper <drepper at redhat.com>\n Jeff Johnson <jbj at redhat.com>\n Alexander Larsson\n Jakub Jelinek <jakub at redhat.com>\n Roland McGrath <roland at redhat.com>.\n See more in the AUTHORS file.\nLicense: GPL-3+\n\nFiles: backends/*\n config/*\n debuginfod/*\n lib*\n version.h\n debian/patches/mips_cfi.patch\nCopyright: (C) 1996-2019 Red Hat, Inc.\n (C) 2021, 2022 Mark J. Wielaard <mark at klomp.org>\n (C) 2015 Oracle, Inc.\n (C) 2016, 2017 The Qt Company Ltd.\n (C) 2021 Google, Inc.\n (C) 2012 Tilera Corporation\n (C) 2019 Hangzhou C-SKY Microsystems co.,ltd.\n (C) H.J. Lu <hjl.tools at gmail.com>, 2015.\n (c) 2021 Dmitry V. Levin <ldv at altlinux.org>\n (C) 2018 Sifive, Inc.\n (C) 2018 Kurt Roeckx, Inc.\nComment: Most of the libraries (lib, libelf, libebl, libdw, libdwfl) have\n the following license:\nLicense: LGPL-3+ or GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of either\n .\n * the GNU Lesser General Public License as published by the Free\n Software Foundation; either version 3 of the License, or (at\n your option) any later version\n .\n or\n .\n * the GNU General Public License as published by the Free\n Software Foundation; either version 2 of the License, or (at\n your option) any later version\n .\n or both in parallel, as here.\n .\n elfutils is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received copies of the GNU General Public License and\n the GNU Lesser General Public License along with this program. If\n not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in\n `/usr/share/common-licenses/GPL-2' and the complete text of the GNU\n Lesser General Public License version 3 can be found in\n `/usr/share/common-licenses/LGPL-3'.\n\nFiles: lib/stdatomic-fbsd.h\nCopyright: (c) 2011 Ed Schouten <ed at FreeBSD.org>\n David Chisnall <theraven at FreeBSD.org>\n\t\t All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: doc/readelf.1\nCopyright: (c) 1991-2018 Free Software Foundation, Inc.\n (c) 2019 Red Hat Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no\n Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU\n Free Documentation License version 1.3 can be found in\n `/usr/share/common-licenses/GFDL-1.3'\n\nFiles: libelf/dl-hash.h\n libelf/elf.h\nCopyright: (C) 1995-2022 Free Software Foundation, Inc.\nComment: This file is part of the GNU C Library.\nLicense: LGPL-2.1+\n The GNU C Library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n The GNU C Library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with the GNU C Library; if not, see\n <https://www.gnu.org/licenses/>.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU\n Lesser General Public License version 2.1 can be found in\n `/usr/share/common-licenses/LGPL-2.1'.\n\nFiles: libcpu/i386_parse.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n\t Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: debian/po/de.po\nCopyright: (C) 2021, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-3+\n\nFiles: debian/po/es.po\nCopyright: (C) 2022, Camale\u00f3n <noelamac at gmail.com>\nLicense: GPL-3+\n\nFiles: debian/po/fr.po\nCopyright: (C) 2021, Jean-Pierre Giraud <jean-pierregiraud at neuf.fr>\nLicense: GPL-3+\n\nFiles: debian/po/nl.po\nCopyright: (C) 2021, Frans Spiesschaert <Frans.Spiesschaert at yucom.be>\nLicense: GPL-3+\n\nFiles: debian/po/pt_BR.po\nCopyright: (C) 2021, Sergio Durigan Junior <sergiodj at debian.org>\nLicense: GPL-3+\n\nFiles: debian/po/pt.po\nCopyright: (C) 2021, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n elfutils is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\nComment: GPL-3+\n On Debian GNU/Linux systems, the complete text of the GNU\n General Public License version 3 can be found in\n `/usr/share/common-licenses/GPL-3'\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Kurt Roeckx <kurt at roeckx.be>.\nUpstream-Name: elfutils\nUpstream-Contact: elfutils-devel at sourceware.org\nSource: https://sourceware.org/elfutils/ftp/\n\nFiles: *\nCopyright: (C) 1996-2019 Red Hat, Inc.\n (C) 2022 Mark J. Wielaard <mark at klomp.org>\n (C) 2015, 2016 Oracle, Inc.\n (C) 2017 The Qt Company\n (C) 2018, 2021 Facebook, Inc.\n (C) 2021 Runsafe Security, Inc.\n (C) H.J. Lu <hjl.tools at gmail.com>, 2015.\n (C) 2020 Tom Tromey\nComment: Written by:\n Ulrich Drepper <drepper at redhat.com>\n Jeff Johnson <jbj at redhat.com>\n Alexander Larsson\n Jakub Jelinek <jakub at redhat.com>\n Roland McGrath <roland at redhat.com>.\n See more in the AUTHORS file.\nLicense: GPL-3+\n\nFiles: backends/*\n config/*\n debuginfod/*\n lib*\n version.h\n debian/patches/mips_cfi.patch\nCopyright: (C) 1996-2019 Red Hat, Inc.\n (C) 2021, 2022 Mark J. Wielaard <mark at klomp.org>\n (C) 2015 Oracle, Inc.\n (C) 2016, 2017 The Qt Company Ltd.\n (C) 2021 Google, Inc.\n (C) 2012 Tilera Corporation\n (C) 2019 Hangzhou C-SKY Microsystems co.,ltd.\n (C) H.J. Lu <hjl.tools at gmail.com>, 2015.\n (c) 2021 Dmitry V. Levin <ldv at altlinux.org>\n (C) 2018 Sifive, Inc.\n (C) 2018 Kurt Roeckx, Inc.\nComment: Most of the libraries (lib, libelf, libebl, libdw, libdwfl) have\n the following license:\nLicense: LGPL-3+ or GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of either\n .\n * the GNU Lesser General Public License as published by the Free\n Software Foundation; either version 3 of the License, or (at\n your option) any later version\n .\n or\n .\n * the GNU General Public License as published by the Free\n Software Foundation; either version 2 of the License, or (at\n your option) any later version\n .\n or both in parallel, as here.\n .\n elfutils is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received copies of the GNU General Public License and\n the GNU Lesser General Public License along with this program. If\n not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in\n `/usr/share/common-licenses/GPL-2' and the complete text of the GNU\n Lesser General Public License version 3 can be found in\n `/usr/share/common-licenses/LGPL-3'.\n\nFiles: lib/stdatomic-fbsd.h\nCopyright: (c) 2011 Ed Schouten <ed at FreeBSD.org>\n David Chisnall <theraven at FreeBSD.org>\n\t\t All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: doc/readelf.1\nCopyright: (c) 1991-2018 Free Software Foundation, Inc.\n (c) 2019 Red Hat Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no\n Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU\n Free Documentation License version 1.3 can be found in\n `/usr/share/common-licenses/GFDL-1.3'\n\nFiles: libelf/dl-hash.h\n libelf/elf.h\nCopyright: (C) 1995-2022 Free Software Foundation, Inc.\nComment: This file is part of the GNU C Library.\nLicense: LGPL-2.1+\n The GNU C Library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n The GNU C Library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with the GNU C Library; if not, see\n <https://www.gnu.org/licenses/>.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU\n Lesser General Public License version 2.1 can be found in\n `/usr/share/common-licenses/LGPL-2.1'.\n\nFiles: libcpu/i386_parse.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n\t Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: debian/po/de.po\nCopyright: (C) 2021, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-3+\n\nFiles: debian/po/es.po\nCopyright: (C) 2022, Camale\u00f3n <noelamac at gmail.com>\nLicense: GPL-3+\n\nFiles: debian/po/fr.po\nCopyright: (C) 2021, Jean-Pierre Giraud <jean-pierregiraud at neuf.fr>\nLicense: GPL-3+\n\nFiles: debian/po/nl.po\nCopyright: (C) 2021, Frans Spiesschaert <Frans.Spiesschaert at yucom.be>\nLicense: GPL-3+\n\nFiles: debian/po/pt_BR.po\nCopyright: (C) 2021, Sergio Durigan Junior <sergiodj at debian.org>\nLicense: GPL-3+\n\nFiles: debian/po/pt.po\nCopyright: (C) 2021, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n elfutils is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\nComment: GPL-3+\n On Debian GNU/Linux systems, the complete text of the GNU\n General Public License version 3 can be found in\n `/usr/share/common-licenses/GPL-3'\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libelf1 at 0.188-2.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1010,6 +2760,59 @@
"content": "e28d141cebb72f1ac1f1d0ea6528b343e41287128db3d4b217ce7790a22352cf"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libext2fs2 at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1026,22 +2829,130 @@
"content": "a4d852a882d62d64561a9311821bc58cbf7de52d23f99da7086e442345ac1ac1"
}
],
- "purl": "pkg:deb/debian/libfdisk1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
- },
- {
- "type": "library",
- "name": "libffi8",
- "version": "3.4.4-1",
- "hashes": [
+ "licenses": [
{
- "alg": "MD5",
- "content": "00818ad9c6c9af6929e58bfd27e3c993"
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
},
{
- "alg": "SHA-256",
- "content": "6d9f6c25c30efccce6d4bceaa48ea86c329a3432abb360a141f76ac223a4c34a"
- }
- ],
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
+ "purl": "pkg:deb/debian/libfdisk1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
+ },
+ {
+ "type": "library",
+ "name": "libffi8",
+ "version": "3.4.4-1",
+ "hashes": [
+ {
+ "alg": "MD5",
+ "content": "00818ad9c6c9af6929e58bfd27e3c993"
+ },
+ {
+ "alg": "SHA-256",
+ "content": "6d9f6c25c30efccce6d4bceaa48ea86c329a3432abb360a141f76ac223a4c34a"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.1-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthias Klose <doko at debian.org>\nSource: https://github.com/libffi/libffi/releases\nUpstream-Contact:\n Anthony Green <green at redhat.com>\n GCC developers\n See the README and below in the list of copyright holders for a more\n complete list.\n\nFiles: *\nCopyright:\n Copyright (c) 1996-2011 Red Hat, Inc.\n Copyright (C) 1996-2011 Anthony Green\n Copyright (C) 1996-2010 Free Software Foundation, Inc\n Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima\n Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc.\n Copyright (c) 2010 CodeSourcery\n Copyright (c) 2012 Alan Hourihane\n Copyright (c) 1998 Andreas Schwab\n Copyright (c) 2012, 2016 Thorsten Glaser\n Copyright (c) 2000 Hewlett Packard Company\n Copyright (c) 2009 Bradley Smith\n Copyright (c) 2008 David Daney\n Copyright (c) 2004 Simon Posnjak\n Copyright (c) 2005 Axis Communications AB\n Copyright (c) 1998 Cygnus Solutions\n Copyright (c) 2004 Renesas Technology\n Copyright (c) 2002, 2007 Bo Thorsen <bo at suse.de>\n Copyright (c) 2002 Ranjit Mathew\n Copyright (c) 2002 Roger Sayle\n Copyright (c) 2000, 2007 Software AG\n Copyright (c) 2003 Jakub Jelinek\n Copyright (c) 2000, 2001 John Hornkvist\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2008 Bj\u00f6rn K\u00f6nig\n Copyright (c) 2021 Microsoft, Inc.\n Copyright (c) 2019 Microsoft Corporation.\n Copyright (c) 2012 Alexandre K. I. de Mendonca <alexandre.keunecke at gmail.com>\n Copyright (c) 2012 Paulo Pizarro <paulo.pizarro at gmail.com>\n Copyright (c) 2015 Michael Knyszek <mknyszek at berkeley.edu>\n Copyright (c) 2011 Timothy Wall\n Copyright (c) 2020 Kalray\n Copyright (c) 2013 Tensilica, Inc.\n Copyright (c) 2011-2012 Tilera Corp.\n Copyright (c) 2009-2012 ARM Ltd.\n Copyright (c) 2013 IBM\n Copyright (C) 2011 Kyle Moffett\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2013 The Written Word, Inc.\n Copyright (c) 2013 Imagination Technologies\n Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)\n Copyright (c) 2014 Sebastian Macke <sebastian at macke.de>\n Copyright (c) 2012, 2013 Xilinx, Inc\n Copyright (c) 2013 Miodrag Vallat. <miod at openbsd.org>\n Copyright (c) 2013 Mentor Graphics.\n Copyright (c) 2020 Madhavan T. Venkataraman\nLicense: Expat\nComment: See source files for details.\n The libffi source distribution contains certain code that is not part\n of libffi, and is only used as tooling to assist with the building and\n testing of libffi. This includes the msvcc.sh script used to wrap the\n Microsoft compiler with GNU compatible command-line options,\n make_sunver.pl, and the libffi test code distributed in the\n testsuite/libffi.bhaible directory. This code is distributed with\n libffi for the purpose of convenience only, and libffi is in no way\n derived from this code.\n\nFiles: doc/libffi.*\nCopyright: (C) 2008-2019, 2021 Anthony Green and Red Hat, Inc.\nLicense: Expat\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: libtool-ldflags\nCopyright: (C) 2005 Free Software Foundation, Inc.\nLicense: GPL-2+\nComment: Contributed by CodeSourcery, LLC.\n\nFiles: make_sunver.pl\nCopyright: (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.\nLicense: GPL-3+\nComment: Upstream does not have the license details.\n ffmpeg includes this software as GPL-3+.\n\nFiles: msvcc.sh\nCopyright:\n The Initial Developer of the Original Code is\n Timothy Wall <twalljava at dev.java.net>.\n Portions created by the Initial Developer are Copyright (C) 2009\n the Initial Developer. All Rights Reserved.\nComment: Contributor(s): Daniel Witte <dwitte at mozilla.com>\nLicense: MPL-1.1 or GPL-2+ or LGPL-2.1+\n The contents of this file are subject to the Mozilla Public License Version\n 1.1 (the \"License\"); you may not use this file except in compliance with\n the License. You may obtain a copy of the License at\n http://www.mozilla.org/MPL/\n .\n Software distributed under the License is distributed on an \"AS IS\" basis,\n WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n for the specific language governing rights and limitations under the\n License.\n .\n Alternatively, the contents of this file may be used under the terms of\n either the GNU General Public License Version 2 or later (the \"GPL\"), or\n the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n in which case the provisions of the GPL or the LGPL are applicable instead\n of those above. If you wish to allow use of your version of this file only\n under the terms of either the GPL or the LGPL, and not to allow others to\n use your version of this file under the terms of the MPL, indicate your\n decision by deleting the provisions above and replace them with the notice\n and other provisions required by the GPL or the LGPL. If you do not delete\n the provisions above, a recipient may use your version of this file under\n the terms of any one of the MPL, the GPL or the LGPL.\n .\n On Debian GNU/Linux systems, the complete texts of these licenses are in\n `/usr/share/common-licenses/{MPL-1.1,GPL-2,LGPL-2.1}'.\n\nFiles: src/dlmalloc.c\nCopyright: None (author: Doug Lea)\nLicense: public-domain\n This is a version (aka dlmalloc) of malloc/free/realloc written by\n Doug Lea and released to the public domain, as explained at\n http://creativecommons.org/licenses/publicdomain. Send questions,\n comments, complaints, performance data, etc to dl at cs.oswego.edu\n\nFiles: testsuite/*\nCopyright: (C) 2003-2019 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.closures/*\nCopyright: (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.\n (C) 2019 Anthony Green\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/*\nCopyright:\n Copyright 1993 Bill Triggs <Bill.Triggs at inrialpes.fr>\n Copyright 1995-2017 Bruno Haible <bruno at clisp.org>\n Copyright (C) 2003, 2006, 2009, 2010, 2014, 2018 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/alignof.h\nCopyright: (C) 2003-2004, 2006, 2009-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: (C) 2008, 2011 Matthias Klose <doko at debian.org>\nLicense: GPL\n The Debian packaging is licensed under the GPL,\n see `/usr/share/common-licenses/GPL'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n ``Software''), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n MA 02110-1301, USA. \n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; see the file COPYING.GPLv3. If not see\n <http://www.gnu.org/licenses/>.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthias Klose <doko at debian.org>\nSource: https://github.com/libffi/libffi/releases\nUpstream-Contact:\n Anthony Green <green at redhat.com>\n GCC developers\n See the README and below in the list of copyright holders for a more\n complete list.\n\nFiles: *\nCopyright:\n Copyright (c) 1996-2011 Red Hat, Inc.\n Copyright (C) 1996-2011 Anthony Green\n Copyright (C) 1996-2010 Free Software Foundation, Inc\n Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima\n Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc.\n Copyright (c) 2010 CodeSourcery\n Copyright (c) 2012 Alan Hourihane\n Copyright (c) 1998 Andreas Schwab\n Copyright (c) 2012, 2016 Thorsten Glaser\n Copyright (c) 2000 Hewlett Packard Company\n Copyright (c) 2009 Bradley Smith\n Copyright (c) 2008 David Daney\n Copyright (c) 2004 Simon Posnjak\n Copyright (c) 2005 Axis Communications AB\n Copyright (c) 1998 Cygnus Solutions\n Copyright (c) 2004 Renesas Technology\n Copyright (c) 2002, 2007 Bo Thorsen <bo at suse.de>\n Copyright (c) 2002 Ranjit Mathew\n Copyright (c) 2002 Roger Sayle\n Copyright (c) 2000, 2007 Software AG\n Copyright (c) 2003 Jakub Jelinek\n Copyright (c) 2000, 2001 John Hornkvist\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2008 Bj\u00f6rn K\u00f6nig\n Copyright (c) 2021 Microsoft, Inc.\n Copyright (c) 2019 Microsoft Corporation.\n Copyright (c) 2012 Alexandre K. I. de Mendonca <alexandre.keunecke at gmail.com>\n Copyright (c) 2012 Paulo Pizarro <paulo.pizarro at gmail.com>\n Copyright (c) 2015 Michael Knyszek <mknyszek at berkeley.edu>\n Copyright (c) 2011 Timothy Wall\n Copyright (c) 2020 Kalray\n Copyright (c) 2013 Tensilica, Inc.\n Copyright (c) 2011-2012 Tilera Corp.\n Copyright (c) 2009-2012 ARM Ltd.\n Copyright (c) 2013 IBM\n Copyright (C) 2011 Kyle Moffett\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2013 The Written Word, Inc.\n Copyright (c) 2013 Imagination Technologies\n Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)\n Copyright (c) 2014 Sebastian Macke <sebastian at macke.de>\n Copyright (c) 2012, 2013 Xilinx, Inc\n Copyright (c) 2013 Miodrag Vallat. <miod at openbsd.org>\n Copyright (c) 2013 Mentor Graphics.\n Copyright (c) 2020 Madhavan T. Venkataraman\nLicense: Expat\nComment: See source files for details.\n The libffi source distribution contains certain code that is not part\n of libffi, and is only used as tooling to assist with the building and\n testing of libffi. This includes the msvcc.sh script used to wrap the\n Microsoft compiler with GNU compatible command-line options,\n make_sunver.pl, and the libffi test code distributed in the\n testsuite/libffi.bhaible directory. This code is distributed with\n libffi for the purpose of convenience only, and libffi is in no way\n derived from this code.\n\nFiles: doc/libffi.*\nCopyright: (C) 2008-2019, 2021 Anthony Green and Red Hat, Inc.\nLicense: Expat\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: libtool-ldflags\nCopyright: (C) 2005 Free Software Foundation, Inc.\nLicense: GPL-2+\nComment: Contributed by CodeSourcery, LLC.\n\nFiles: make_sunver.pl\nCopyright: (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.\nLicense: GPL-3+\nComment: Upstream does not have the license details.\n ffmpeg includes this software as GPL-3+.\n\nFiles: msvcc.sh\nCopyright:\n The Initial Developer of the Original Code is\n Timothy Wall <twalljava at dev.java.net>.\n Portions created by the Initial Developer are Copyright (C) 2009\n the Initial Developer. All Rights Reserved.\nComment: Contributor(s): Daniel Witte <dwitte at mozilla.com>\nLicense: MPL-1.1 or GPL-2+ or LGPL-2.1+\n The contents of this file are subject to the Mozilla Public License Version\n 1.1 (the \"License\"); you may not use this file except in compliance with\n the License. You may obtain a copy of the License at\n http://www.mozilla.org/MPL/\n .\n Software distributed under the License is distributed on an \"AS IS\" basis,\n WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n for the specific language governing rights and limitations under the\n License.\n .\n Alternatively, the contents of this file may be used under the terms of\n either the GNU General Public License Version 2 or later (the \"GPL\"), or\n the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n in which case the provisions of the GPL or the LGPL are applicable instead\n of those above. If you wish to allow use of your version of this file only\n under the terms of either the GPL or the LGPL, and not to allow others to\n use your version of this file under the terms of the MPL, indicate your\n decision by deleting the provisions above and replace them with the notice\n and other provisions required by the GPL or the LGPL. If you do not delete\n the provisions above, a recipient may use your version of this file under\n the terms of any one of the MPL, the GPL or the LGPL.\n .\n On Debian GNU/Linux systems, the complete texts of these licenses are in\n `/usr/share/common-licenses/{MPL-1.1,GPL-2,LGPL-2.1}'.\n\nFiles: src/dlmalloc.c\nCopyright: None (author: Doug Lea)\nLicense: public-domain\n This is a version (aka dlmalloc) of malloc/free/realloc written by\n Doug Lea and released to the public domain, as explained at\n http://creativecommons.org/licenses/publicdomain. Send questions,\n comments, complaints, performance data, etc to dl at cs.oswego.edu\n\nFiles: testsuite/*\nCopyright: (C) 2003-2019 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.closures/*\nCopyright: (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.\n (C) 2019 Anthony Green\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/*\nCopyright:\n Copyright 1993 Bill Triggs <Bill.Triggs at inrialpes.fr>\n Copyright 1995-2017 Bruno Haible <bruno at clisp.org>\n Copyright (C) 2003, 2006, 2009, 2010, 2014, 2018 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/alignof.h\nCopyright: (C) 2003-2004, 2006, 2009-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: (C) 2008, 2011 Matthias Klose <doko at debian.org>\nLicense: GPL\n The Debian packaging is licensed under the GPL,\n see `/usr/share/common-licenses/GPL'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n ``Software''), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n MA 02110-1301, USA. \n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; see the file COPYING.GPLv3. If not see\n <http://www.gnu.org/licenses/>.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libffi8 at 3.4.4-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1058,6 +2969,49 @@
"content": "f3d1d48c0599aea85b7f2077a01d285badc42998c1a1e7473935d5cf995c8141"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.1-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthias Klose <doko at debian.org>\nSource: https://github.com/libffi/libffi/releases\nUpstream-Contact:\n Anthony Green <green at redhat.com>\n GCC developers\n See the README and below in the list of copyright holders for a more\n complete list.\n\nFiles: *\nCopyright:\n Copyright (c) 1996-2011 Red Hat, Inc.\n Copyright (C) 1996-2011 Anthony Green\n Copyright (C) 1996-2010 Free Software Foundation, Inc\n Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima\n Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc.\n Copyright (c) 2010 CodeSourcery\n Copyright (c) 2012 Alan Hourihane\n Copyright (c) 1998 Andreas Schwab\n Copyright (c) 2012, 2016 Thorsten Glaser\n Copyright (c) 2000 Hewlett Packard Company\n Copyright (c) 2009 Bradley Smith\n Copyright (c) 2008 David Daney\n Copyright (c) 2004 Simon Posnjak\n Copyright (c) 2005 Axis Communications AB\n Copyright (c) 1998 Cygnus Solutions\n Copyright (c) 2004 Renesas Technology\n Copyright (c) 2002, 2007 Bo Thorsen <bo at suse.de>\n Copyright (c) 2002 Ranjit Mathew\n Copyright (c) 2002 Roger Sayle\n Copyright (c) 2000, 2007 Software AG\n Copyright (c) 2003 Jakub Jelinek\n Copyright (c) 2000, 2001 John Hornkvist\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2008 Bj\u00f6rn K\u00f6nig\n Copyright (c) 2021 Microsoft, Inc.\n Copyright (c) 2019 Microsoft Corporation.\n Copyright (c) 2012 Alexandre K. I. de Mendonca <alexandre.keunecke at gmail.com>\n Copyright (c) 2012 Paulo Pizarro <paulo.pizarro at gmail.com>\n Copyright (c) 2015 Michael Knyszek <mknyszek at berkeley.edu>\n Copyright (c) 2011 Timothy Wall\n Copyright (c) 2020 Kalray\n Copyright (c) 2013 Tensilica, Inc.\n Copyright (c) 2011-2012 Tilera Corp.\n Copyright (c) 2009-2012 ARM Ltd.\n Copyright (c) 2013 IBM\n Copyright (C) 2011 Kyle Moffett\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2013 The Written Word, Inc.\n Copyright (c) 2013 Imagination Technologies\n Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)\n Copyright (c) 2014 Sebastian Macke <sebastian at macke.de>\n Copyright (c) 2012, 2013 Xilinx, Inc\n Copyright (c) 2013 Miodrag Vallat. <miod at openbsd.org>\n Copyright (c) 2013 Mentor Graphics.\n Copyright (c) 2020 Madhavan T. Venkataraman\nLicense: Expat\nComment: See source files for details.\n The libffi source distribution contains certain code that is not part\n of libffi, and is only used as tooling to assist with the building and\n testing of libffi. This includes the msvcc.sh script used to wrap the\n Microsoft compiler with GNU compatible command-line options,\n make_sunver.pl, and the libffi test code distributed in the\n testsuite/libffi.bhaible directory. This code is distributed with\n libffi for the purpose of convenience only, and libffi is in no way\n derived from this code.\n\nFiles: doc/libffi.*\nCopyright: (C) 2008-2019, 2021 Anthony Green and Red Hat, Inc.\nLicense: Expat\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: libtool-ldflags\nCopyright: (C) 2005 Free Software Foundation, Inc.\nLicense: GPL-2+\nComment: Contributed by CodeSourcery, LLC.\n\nFiles: make_sunver.pl\nCopyright: (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.\nLicense: GPL-3+\nComment: Upstream does not have the license details.\n ffmpeg includes this software as GPL-3+.\n\nFiles: msvcc.sh\nCopyright:\n The Initial Developer of the Original Code is\n Timothy Wall <twalljava at dev.java.net>.\n Portions created by the Initial Developer are Copyright (C) 2009\n the Initial Developer. All Rights Reserved.\nComment: Contributor(s): Daniel Witte <dwitte at mozilla.com>\nLicense: MPL-1.1 or GPL-2+ or LGPL-2.1+\n The contents of this file are subject to the Mozilla Public License Version\n 1.1 (the \"License\"); you may not use this file except in compliance with\n the License. You may obtain a copy of the License at\n http://www.mozilla.org/MPL/\n .\n Software distributed under the License is distributed on an \"AS IS\" basis,\n WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n for the specific language governing rights and limitations under the\n License.\n .\n Alternatively, the contents of this file may be used under the terms of\n either the GNU General Public License Version 2 or later (the \"GPL\"), or\n the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n in which case the provisions of the GPL or the LGPL are applicable instead\n of those above. If you wish to allow use of your version of this file only\n under the terms of either the GPL or the LGPL, and not to allow others to\n use your version of this file under the terms of the MPL, indicate your\n decision by deleting the provisions above and replace them with the notice\n and other provisions required by the GPL or the LGPL. If you do not delete\n the provisions above, a recipient may use your version of this file under\n the terms of any one of the MPL, the GPL or the LGPL.\n .\n On Debian GNU/Linux systems, the complete texts of these licenses are in\n `/usr/share/common-licenses/{MPL-1.1,GPL-2,LGPL-2.1}'.\n\nFiles: src/dlmalloc.c\nCopyright: None (author: Doug Lea)\nLicense: public-domain\n This is a version (aka dlmalloc) of malloc/free/realloc written by\n Doug Lea and released to the public domain, as explained at\n http://creativecommons.org/licenses/publicdomain. Send questions,\n comments, complaints, performance data, etc to dl at cs.oswego.edu\n\nFiles: testsuite/*\nCopyright: (C) 2003-2019 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.closures/*\nCopyright: (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.\n (C) 2019 Anthony Green\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/*\nCopyright:\n Copyright 1993 Bill Triggs <Bill.Triggs at inrialpes.fr>\n Copyright 1995-2017 Bruno Haible <bruno at clisp.org>\n Copyright (C) 2003, 2006, 2009, 2010, 2014, 2018 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/alignof.h\nCopyright: (C) 2003-2004, 2006, 2009-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: (C) 2008, 2011 Matthias Klose <doko at debian.org>\nLicense: GPL\n The Debian packaging is licensed under the GPL,\n see `/usr/share/common-licenses/GPL'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n ``Software''), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n MA 02110-1301, USA. \n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; see the file COPYING.GPLv3. If not see\n <http://www.gnu.org/licenses/>.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthias Klose <doko at debian.org>\nSource: https://github.com/libffi/libffi/releases\nUpstream-Contact:\n Anthony Green <green at redhat.com>\n GCC developers\n See the README and below in the list of copyright holders for a more\n complete list.\n\nFiles: *\nCopyright:\n Copyright (c) 1996-2011 Red Hat, Inc.\n Copyright (C) 1996-2011 Anthony Green\n Copyright (C) 1996-2010 Free Software Foundation, Inc\n Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima\n Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc.\n Copyright (c) 2010 CodeSourcery\n Copyright (c) 2012 Alan Hourihane\n Copyright (c) 1998 Andreas Schwab\n Copyright (c) 2012, 2016 Thorsten Glaser\n Copyright (c) 2000 Hewlett Packard Company\n Copyright (c) 2009 Bradley Smith\n Copyright (c) 2008 David Daney\n Copyright (c) 2004 Simon Posnjak\n Copyright (c) 2005 Axis Communications AB\n Copyright (c) 1998 Cygnus Solutions\n Copyright (c) 2004 Renesas Technology\n Copyright (c) 2002, 2007 Bo Thorsen <bo at suse.de>\n Copyright (c) 2002 Ranjit Mathew\n Copyright (c) 2002 Roger Sayle\n Copyright (c) 2000, 2007 Software AG\n Copyright (c) 2003 Jakub Jelinek\n Copyright (c) 2000, 2001 John Hornkvist\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2008 Bj\u00f6rn K\u00f6nig\n Copyright (c) 2021 Microsoft, Inc.\n Copyright (c) 2019 Microsoft Corporation.\n Copyright (c) 2012 Alexandre K. I. de Mendonca <alexandre.keunecke at gmail.com>\n Copyright (c) 2012 Paulo Pizarro <paulo.pizarro at gmail.com>\n Copyright (c) 2015 Michael Knyszek <mknyszek at berkeley.edu>\n Copyright (c) 2011 Timothy Wall\n Copyright (c) 2020 Kalray\n Copyright (c) 2013 Tensilica, Inc.\n Copyright (c) 2011-2012 Tilera Corp.\n Copyright (c) 2009-2012 ARM Ltd.\n Copyright (c) 2013 IBM\n Copyright (C) 2011 Kyle Moffett\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2013 The Written Word, Inc.\n Copyright (c) 2013 Imagination Technologies\n Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)\n Copyright (c) 2014 Sebastian Macke <sebastian at macke.de>\n Copyright (c) 2012, 2013 Xilinx, Inc\n Copyright (c) 2013 Miodrag Vallat. <miod at openbsd.org>\n Copyright (c) 2013 Mentor Graphics.\n Copyright (c) 2020 Madhavan T. Venkataraman\nLicense: Expat\nComment: See source files for details.\n The libffi source distribution contains certain code that is not part\n of libffi, and is only used as tooling to assist with the building and\n testing of libffi. This includes the msvcc.sh script used to wrap the\n Microsoft compiler with GNU compatible command-line options,\n make_sunver.pl, and the libffi test code distributed in the\n testsuite/libffi.bhaible directory. This code is distributed with\n libffi for the purpose of convenience only, and libffi is in no way\n derived from this code.\n\nFiles: doc/libffi.*\nCopyright: (C) 2008-2019, 2021 Anthony Green and Red Hat, Inc.\nLicense: Expat\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: libtool-ldflags\nCopyright: (C) 2005 Free Software Foundation, Inc.\nLicense: GPL-2+\nComment: Contributed by CodeSourcery, LLC.\n\nFiles: make_sunver.pl\nCopyright: (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.\nLicense: GPL-3+\nComment: Upstream does not have the license details.\n ffmpeg includes this software as GPL-3+.\n\nFiles: msvcc.sh\nCopyright:\n The Initial Developer of the Original Code is\n Timothy Wall <twalljava at dev.java.net>.\n Portions created by the Initial Developer are Copyright (C) 2009\n the Initial Developer. All Rights Reserved.\nComment: Contributor(s): Daniel Witte <dwitte at mozilla.com>\nLicense: MPL-1.1 or GPL-2+ or LGPL-2.1+\n The contents of this file are subject to the Mozilla Public License Version\n 1.1 (the \"License\"); you may not use this file except in compliance with\n the License. You may obtain a copy of the License at\n http://www.mozilla.org/MPL/\n .\n Software distributed under the License is distributed on an \"AS IS\" basis,\n WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n for the specific language governing rights and limitations under the\n License.\n .\n Alternatively, the contents of this file may be used under the terms of\n either the GNU General Public License Version 2 or later (the \"GPL\"), or\n the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n in which case the provisions of the GPL or the LGPL are applicable instead\n of those above. If you wish to allow use of your version of this file only\n under the terms of either the GPL or the LGPL, and not to allow others to\n use your version of this file under the terms of the MPL, indicate your\n decision by deleting the provisions above and replace them with the notice\n and other provisions required by the GPL or the LGPL. If you do not delete\n the provisions above, a recipient may use your version of this file under\n the terms of any one of the MPL, the GPL or the LGPL.\n .\n On Debian GNU/Linux systems, the complete texts of these licenses are in\n `/usr/share/common-licenses/{MPL-1.1,GPL-2,LGPL-2.1}'.\n\nFiles: src/dlmalloc.c\nCopyright: None (author: Doug Lea)\nLicense: public-domain\n This is a version (aka dlmalloc) of malloc/free/realloc written by\n Doug Lea and released to the public domain, as explained at\n http://creativecommons.org/licenses/publicdomain. Send questions,\n comments, complaints, performance data, etc to dl at cs.oswego.edu\n\nFiles: testsuite/*\nCopyright: (C) 2003-2019 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.closures/*\nCopyright: (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.\n (C) 2019 Anthony Green\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/*\nCopyright:\n Copyright 1993 Bill Triggs <Bill.Triggs at inrialpes.fr>\n Copyright 1995-2017 Bruno Haible <bruno at clisp.org>\n Copyright (C) 2003, 2006, 2009, 2010, 2014, 2018 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/alignof.h\nCopyright: (C) 2003-2004, 2006, 2009-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: (C) 2008, 2011 Matthias Klose <doko at debian.org>\nLicense: GPL\n The Debian packaging is licensed under the GPL,\n see `/usr/share/common-licenses/GPL'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n ``Software''), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n MA 02110-1301, USA. \n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; see the file COPYING.GPLv3. If not see\n <http://www.gnu.org/licenses/>.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgcc-s1 at 12.2.0-14?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1074,6 +3028,7 @@
"content": "bffcac7e4f69e39d37d4a33e841d6371ac8b5aba6cd55546b385dc7ff6c702f5"
}
],
+ "licenses": [],
"purl": "pkg:deb/debian/libgcrypt20 at 1.10.1-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1090,6 +3045,26 @@
"content": "187aedef2ed763f425c1e523753b9719677633c7eede660401739e9c893482bd"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GPL-2.0-or-later OR LGPL-3.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GMP\nSource: http://gmplib.org/\nComment: This gmp package was built for Debian by\n Steve M. Robbins <smr at debian.org>\n Philipp Matthias Hahn <pmhahn at debian.org>\n .\n The documentation is released under the GNU Free Documentation License\n (GFDL) and it has cover texts. As such, it has been determined not to\n meet the Debian Free Software Guidelines, and is not shipped in the\n debian packages.\nFiles-Excluded: doc\n\nFiles: *\nCopyright: 1991, 1996, 1999, 2000, 2007 Free Software Foundation, Inc.\nLicense: GPL-2+ or LGPL-3+\nComment:\n This file is part of the GNU MP Library.\n .\n The GNU MP Library is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n * the GNU Lesser General Public License as published by the Free\n Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n or\n .\n * the GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n .\n or both in parallel, as here.\n .\n The GNU MP Library is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n .\n You should have received copies of the GNU General Public License and the\n GNU Lesser General Public License along with the GNU MP Library. If not,\n see https://www.gnu.org/licenses/.\n\nFiles: demos/calc/*.[chyl]\n demos/factorize.c demos/isprime.c demos/primes.[ch] demos/qcn.c demos/pexpr*\nCopyright: 1995, 1997-2003, 2005, 2006, 2008, 2009, 2012, 2015 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: demos/calc/calc.[ch]\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\nLicense: GPL-2+\n The GNU General Public License v2 text is contained in /usr/share/common-licenses/GPL-2.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free Software\n Foundation; either version 3 of the License, or (at your option) any later\n version.\n .\n This program is distributed in the hope that it will be useful, but WITHOUT ANY\n WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n PARTICULAR PURPOSE. See the GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along with\n this program. If not, see <https://www.gnu.org/licenses/>.\n .\n The GNU General Public License v3 text is contained in /usr/share/common-licenses/GPL-3.\n\nLicense: LGPL-3+\n The GNU Lesser General Public License v3 text is contained in /usr/share/common-licenses/LGPL-3.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgmp10 at 2:6.2.1+dfsg1-1.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1106,6 +3081,60 @@
"content": "cee417d4107bbe94ddcc124524366ea675e89d106b70969a7d508ef26e92a713"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ },
+ {
+ "license": {
+ "name": "The main library is licensed under GNU Lesser",
+ "text": {
+ "content": "This package was debianized by Ivo Timmermans <ivo at debian.org> on\nFri, 3 Aug 2001 10:00:42 +0200.\nIt was later taken over by Matthias Urlichs <smurf at debian.org> and is now\nmaintained by Andreas Metzler <ametzler at debian.org> Eric Dorland\n<eric at debian.org>, James Westby <jw+debian at jameswestby.net>\n\n\nIt was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/\n\nUpstream Authors (from AUTHORS file):\n8X------------------------------------\nThe authors list is autogenerated from the git history; sorted by number of commits\n\nNikos Mavrogiannopoulos <nmav at gnutls.org>\nSimon Josefsson <jas at josefsson.org>\nDaiki Ueno <ueno at gnu.org>\nDmitry Baryshkov <dbaryshkov at gmail.com>\nTim R\u00fchsen <tim.ruehsen at gmx.de>\nLudovic Court\u00e8s <ludo at gnu.org>\nTimo Schulz <twoaday at gnutls.org>\nJonathan Bastien-Filiatrault <joe at x2a.org>\nAndreas Metzler <ametzler at debian.org>\nAlon Bar-Lev <alon.barlev at gmail.com>\nAlexander Sosedkin <asosedkin at redhat.com>\nDaniel Kahn Gillmor <dkg at fifthhorseman.net>\nTom Vrancken <dev at tomvrancken.nl>\nZoltan Fridrich <zfridric at redhat.com>\nMartin Storsjo <martin at martin.st>\nTim Kosse <tim.kosse at filezilla-project.org>\nSimo Sorce <simo at redhat.com>\nFabian Keil <fk at fabiankeil.de>\nFabio Fiorina <fiorinaf at gnutls.org>\nStef Walter <stefw at redhat.com>\nAnderson Toshiyuki Sasaki <ansasaki at redhat.com>\nArmin Burgmeier <armin at arbur.net>\nFranti\u0161ek Kren\u017eelok <krenzelok.frantisek at gmail.com>\nAndrew McDonald <admcd at gnutls.org>\nFiona Klute <fiona.klute at gmx.de>\nAlex Gaynor <alex.gaynor at gmail.com>\nAnder Juaristi <a at juaristi.eus>\nMartin Ukrop <mukrop at redhat.com>\nJaak Ristioja <jaak.ristioja at cyber.ee>\nAttila Molnar <attilamolnar at hush.com>\nHugo Beauz\u00e9e-Luyssen <hugo at beauzee.fr>\nStefan Berger <stefanb at linux.ibm.com>\nSteve Lhomme <robux4 at ycbcr.xyz>\nJakub Jelen <jjelen at redhat.com>\nMartin Sucha <anty.sk+git at gmail.com>\nDavid Woodhouse <dwmw2 at infradead.org>\nJan Vcelak <jan.vcelak at nic.cz>\nKevin Cernekee <cernekee at gmail.com>\nNikolay Sivov <nsivov at codeweavers.com>\nSahana Prasad <sahana at redhat.com>\nMichael Catanzaro <mcatanzaro at gnome.org>\nDaniel Lenski <dlenski at gmail.com>\nJonasZhou <JonasZhou at zhaoxin.com>\nStefan S\u00f8rensen <stefan.sorensen at spectralink.com>\nTobias Heider <tobias.heider at canonical.com>\nAdam Sampson <ats at offog.org>\nAlfredo Pironti <alfredo at pironti.eu>\nBrad Hards <bradh at frogmouth.net>\nDimitri John Ledkov <xnox at ubuntu.com>\nHubert Kario <hkario at redhat.com>\nMichael Weiser <michael.weiser at gmx.de>\nPatrick Pelletier <code at funwithsoftware.org>\nRolf Eike Beer <eike at sf-mail.de>\nRuslan N. Marchenko <me at ruff.mobi>\nSjoerd Simons <sjoerd.simons at collabora.co.uk>\nStefan B\u00fchler <stbuehler at web.de>\nThomas Klute <thomas2.klute at uni-dortmund.de>\nWolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>\nChristian Grothoff <christian at grothoff.org>\nDaniel P. Berrange <berrange at redhat.com>\nEvgeny Grin <k2k at narod.ru>\nGustavo Zacarias <gustavo at zacarias.com.ar>\nJames Bottomley <James.Bottomley at HansenPartnership.com>\nJi\u0159\u00ed Klime\u0161 <jklimes at redhat.com>\nKarsten Ohme <k_o_ at users.sourceforge.net>\nKurt Roeckx <kurt at roeckx.be>\nPeter Wu <peter at lekensteyn.nl>\nStanislav Zidek <szidek at redhat.com>\nStephan Mueller <smueller at chronox.de>\nThierry Quemerais <tquemerais at awox.com>\nTom Carroll <incentivedesign at gmail.com>\nVitezslav Cizek <vcizek at suse.com>\nAlessandro Ghedini <alessandro at ghedini.me>\nAlex Monk <krenair at gmail.com>\nBenjamin Herrenschmidt <benh at kernel.crashing.org>\nBernhard M. Wiedemann <bwiedemann at suse.de>\nCraig Gallek <cgallek at gmail.com>\nDavid Caldwell <david at porkrind.org>\nDiego Elio Petten\u00f2 <flameeyes at flameeyes.eu>\nElta Koepp <alexi_2019 at protonmail.com>\nFabrice Fontaine <fontaine.fabrice at gmail.com>\nGiuseppe Scrivano <gscrivano at gnu.org>\nIlya Tumaykin <itumaykin at gmail.com>\nKarl Tarbe <karl.tarbe at cyber.ee>\nKe Zhao <kzhao at redhat.com>\nLeonardo Bras <leobras.c at gmail.com>\nMark Brand <mabrand at mabrand.nl>\nMatthias-Christian Ott <ott at mirix.org>\nMaya Rashish <coypu at sdf.org>\nMichael Catanzaro <mcatanzaro at igalia.com>\nMicha\u0142 G\u00f3rny <mgorny at gentoo.org>\nMiroslav Lichvar <mlichvar at redhat.com>\nPedro Monreal <pmgdeb at gmail.com>\nPedro Monreal <pmonrealgonzalez at suse.de>\nPetr P\u00edsa\u0159 <petr.pisar at atlas.cz>\nPierre Ossman <ossman at cendio.se>\nRoman Bogorodskiy <bogorodskiy at gmail.com>\nSam James <sam at gentoo.org>\nSimon South <simon at simonsouth.net>\nSteffen Jaeckel <jaeckel-floss at eyet-services.de>\nSteve Dispensa <dispensa at phonefactor.com>\nnia <nia at NetBSD.org>\nraspa0 <raspa0 at protonmail.com>\nAlban Crequy <alban.crequy at collabora.co.uk>\nAlbrecht Dre\u00df <albrecht.dress at arcor.de>\nAleksei Nikiforov <darktemplar at basealt.ru>\nAlexander Kanavin <alex.kanavin at gmail.com>\nAlexandre Bique <bique.alexandre at gmail.com>\nAndreas Schneider <asn at samba.org>\nAndreas Schwab <schwab at suse.de>\nAsad Mehmood <asad78611 at googlemail.com>\nAvinash Sonawane <rootkea at gmail.com>\nBas van Schaik <gitlab.com at s.traiectum.net>\nBjoern Jacke <bjacke at samba.org>\nBj\u00f6rn Jacke <bjacke at samba.org>\nBj\u00f8rn Christensen <bhc at insight.dk>\nBrad Smith <brad at comstyle.com>\nBrian Wickman <bwickman97 at outlook.com>\nCarolin Latze <latze at angry-red-pla.net>\nChen Hongzhi <hongzhi.chen at me.com>\nChris Barry <chris at barry.im>\nColin Walters <walters at verbum.org>\nDan Fandrich <dan at coneharvesters.com>\nDaniel Schaefer <git at danielschaefer.me>\nDavid Walker <david.walker at vcatechnology.com>\nDavid Weber <dave at veryflatcat.com>\nDimitris Apostolou <dimitris.apostolou at icloud.com>\nDmitriy Tsvettsikh <dmitrycvet at gmail.com>\nDosenpfand <m at sad.bz>\nDoug Nazar <nazard at nazar.ca>\nEdward Stangler <estangler at bradmark.com>\nElias Pipping <pipping at exherbo.org>\nElta Koepp <elta_koepp at gmail.com>\nFrank Morgner <morgner at informatik.hu-berlin.de>\nGregor Jasny <gjasny at googlemail.com>\nG\u00fcnther Deschner <gd at samba.org>\nHani Benhabiles <kroosec at gmail.com>\nHannes Reinecke <hare at suse.de>\nHans Leidekker <hans at codeweavers.com>\nIlya V. Matveychikov <i.matveychikov at securitycode.ru>\nJan Palus <jpalus at fastmail.com>\nJared Wong <jaredlwong at gmail.com>\nJason Spafford <nullprogrammer at gmail.com>\nJay Foad <jay.foad at gmail.com>\nJeffrey Walton <noloader at gmail.com>\nJens Lechtenboerger <jens.lechtenboerger at fsfe.org>\nJussi Kukkonen <jussi.kukkonen at intel.com>\nKenneth J. Miller <ken at miller.ec>\nLei Maohui <leimaohui at cn.fujitsu.com>\nLili Quan <13132239506 at 163.com>\nLucas Fisher <lucas.fisher at gmail.com>\nLudwig Nussel <ludwig.nussel at suse.de>\nLuis G.F <luisgf at gmail.com>\nLuke Dashjr <luke-jr+git at utopios.org>\nMaciej S. Szmigiero <mail at maciej.szmigiero.name>\nMaks Naumov <maksqwe1 at ukr.net>\nMarcin Cie\u015blak <saper at saper.info>\nMarcus Meissner <meissner at suse.de>\nMarga Manterola <marga at google.com>\nMarius Bakke <mbakke at fastmail.com>\nMarti Raudsepp <marti at juffo.org>\nMarvin Scholz <epirat07 at gmail.com>\nMatt Turner <mattst88 at gmail.com>\nMatt Whitlock <matt at whitlock.name>\nMicah Anderson <micah at riseup.net>\nMichael Catanzaro <mcatanzaro at redhat.com>\nNick Alcock <nick.alcock at oracle.com>\nNick Child <nick.child at ibm.com>\nNicolas Dufresne <nicolas.dufresne at collabora.com>\nNils Maier <maierman at web.de>\nNorbert Pocs <npocs at redhat.com>\nOlga <olyasib12 at gmail.com>\nOndrej Moris <omoris at redhat.com>\nPetr Pavlu <petr.pavlu at suse.com>\nPhilippe Proulx <eeppeliteloop at gmail.com>\nPhilippe Widmer <pw at earthwave.ch>\nR. Andrew Bailey <bailey at akamai.com>\nRaj Raman <rajramanca at gmail.com>\nRemi Olivier <remi_8 at hotmail.com>\nRical Jasan <ricaljasan at pacific.net>\nRicardo M. Correia <rcorreia at wizy.org>\nRichard Costa <richard.costa at suse.com>\nRickard Bellgrim <rickard at opendnssec.org>\nRobert Scheck <robert at fedoraproject.org>\nRoberto Newmon <robertonewmon at fake-box.com>\nRoss Nicholson <phunkyfish at gmail.com>\nRowan Thorpe <rowan at rowanthorpe.com>\nSUMIT AGGARWAL <aggarwal.s at samsung.com>\nSadie Powell <sadie at witchery.services>\nSaurav Babu <saurav.babu at samsung.com>\nSebastian Dr\u00f6ge <sebastian at centricular.com>\nSeppo Yli-Olli <seppo.yliolli at gmail.com>\nSimon Arlott <sa.me.uk>\nTatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>\nThomas Klausner <wiz at NetBSD.org>\nTobias Polzer <tobias.polzer at fau.de>\nTomas Hoger <thoger at redhat.com>\nTomas Mraz <tmraz at fedoraproject.org>\nTristan Matthews <le.businessman at gmail.com>\nWerner Koch <wk at gnupg.org>\nYuriy M. Kaminskiy <yumkam at gmail.com>\nihsinme <ihsinme at gmail.com>\nrrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>\nsskaje <sskaje at gmail.com>\n\u0141ukasz Stelmach <stlman at poczta.fm>\n\n\nThe translators list is autogenerated from po file history\n\nAnders Jonsson\nBenno Schulenberg\nCristian Oth\u00f3n Mart\u00ednez Vera\nFelipe Castro\nJakub Bogusz\nJorma Karvonen\nMario Bl\u00e4ttermann\nMilo Casagrande\nMingye Wang (Arthur2e5)\nPetr Pisar\nRafael Fontenelle\nRemus-Gabriel Chelu\nSharuzzaman Ahmat Raslan\nSt\u00e9phane Aulery\nTemuri Doghonadze\nTr\u1ea7n Ng\u1ecdc Qu\u00e2n\nYuri Chornoivan\n\u041c\u0438\u0440\u043e\u0441\u043b\u0430\u0432 \u041d\u0438\u043a\u043e\u043b\u0438\u045b\n8X------------------------------------\n\nLicense: The main library is licensed under GNU Lesser\nGeneral Public License (LGPL) version 2.1+, Gnutls Extra (which is currently\njust the openssl wrapper library), build system, testsuite and commandline\nutilities are licenced under the GNU General Public License version 3+. The\nGuile bindings use the same license as the respective underlying library,\ni.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.\n\nHowever to be able to use and link against libgnutls a program needs to be\navailable under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS\nrequires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed\nLGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also\nis dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier\nversion were LGPLv3+ only.)\n\nCopyright:\n--------------------\n/* -*- c -*-\n * Copyright (C) 2000-2019 Free Software Foundation, Inc.\n *\n * Author: Nikos Mavrogiannopoulos\n *\n * This file is part of GnuTLS.\n *\n * The GnuTLS is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public License\n * as published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>\n *\n */\n--------------------\n/*\n * Copyright (C) 2004-2015 Free Software Foundation, Inc.\n * Copyright (c) 2002 Andrew McDonald <andrew at mcdonald.org.uk>\n *\n * This file is part of GnuTLS-EXTRA.\n *\n * GnuTLS-extra is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * GnuTLS-extra is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n--------------------\n\nThe documentation is distributed under the terms of the GNU Free\nDocumentation License (FDL):\n--------------------\nCopyright (C) 2001-2023 Free Software Foundation, Inc.\nCopyright (C) 2001-2023 Nikos Mavrogiannopoulos\n\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n--------------------\n\n--------------------\nFrom December 2012 onwards FSF is not the sole copyright holder of GnuTLS\nanymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),\nthe headers currently also list these authors/copyright holders::\n* Adam Sampson\n* Alexander von Gernler\n* Andrew McDonald\n* ARPA2 project\n* Attila Molnar\n* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin\n* Brian Wickman\n* Canonical, Ltd.\n* Christian Grothoff\n* Daiki Ueno\n* David Woodhouse\n* Dmitry Eremin-Solenikov\n* Dyalog Ltd.\n* Fiona Klute\n* Frank Morgner\n* Fratni\u0161ek Kren\u017eelok\n* Guillaume Roguez\n* Hugo Beauz\u00e9e-Luyssen\n* IBM Corporation\n* INRIA Paris-Rocquencourt\n* Intel Corporation.\n* Joe Orton\n* Karl Tarbe\n* KU Leuven\n* Lucas Fisher\n* Markus Friedl\n* Michael Zucchi\n* Niels M\u00f6ller\n* Nikos Mavrogiannopoulos\n* Paul Sheer\n* Pierre Ossman\n* Red Hat, Inc.\n* Ruslan N. Marchenko\n* Sean Buckheister\n* Simon Josefsson\n* Stephan Mueller\n* The Pkcs11Interop Project\n* Thomas Klute\n* Tim Kosse\n* Tim R\u00fchsen\n* Tobias Heider\n* Tom Vrancken\n--------------------\n\n\n\nOn Debian GNU/Linux systems, the complete text of the latest version of\nthe GNU Lesser General Public License can be found in\n`/usr/share/common-licenses/LGPL' v3 of the license in\n`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can\nbe found in `/usr/share/common-licenses/GPL' (version 3 in\n/usr/share/common-licenses/GPL-3) The GNU Free Documentation\nLicense is available under /usr/share/common-licenses/GFDL-1.3.\n\n============================================\n\nExcerpt from upstream's README:\n\nLICENSING\n=========\n\nSince GnuTLS version 3.1.10, the core library has been released under\nthe GNU Lesser General Public License (LGPL) version 2.1 or later.\n\nNote, however, that version 6.0.0 and later of the gmplib library used\nby GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and\nas such binaries of this library need to adhere to either LGPLv3+ or\nGPLv2+ license.\n\n\n\n\nThe GNU LGPL applies to the main GnuTLS library, while the\nincluded applications as well as gnutls-openssl\nlibrary are under the GNU GPL version 3. The gnutls library is\nlocated in the lib/ and libdane/ directories, while the applications\nin src/ and, the gnutls-openssl library is at extra/.\n\nFor any copyright year range specified as YYYY-ZZZZ in this package\nnote that the range specifies every single year in that closed interval.\n============================================\n============================================\n\nNon FSF code\n\n============================================\n\nlib/accelerated/x86 contains code by Andy Polyakov <appro at openssl.org>,\ncopyright is not assigned to the FSF. The code is licensed under the\nCRYPTOGAMS license.\n\n--------------------\n# Copyright (c) 2011-2016, Andy Polyakov by <appro at openssl.org>\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# * Redistributions of source code must retain copyright notices,\n# this list of conditions and the following disclaimer.\n#\n# * Redistributions in binary form must reproduce the above\n# copyright notice, this list of conditions and the following\n# disclaimer in the documentation and/or other materials\n# provided with the distribution.\n#\n# * Neither the name of the Andy Polyakov nor the names of its\n# copyright holder and contributors may be used to endorse or\n# promote products derived from this software without specific\n# prior written permission.\n#\n# ALTERNATIVELY, provided that this notice is retained in full, this\n# product may be distributed under the terms of the GNU General Public\n# License (GPL), in which case the provisions of the GPL apply INSTEAD OF\n# those given above.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS\n# \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--------------------\n\n============================================\n\nlib/extras/randomart.*\n\n\nUpstream Authors: Markus Friedl\n Alexander von Gernler\n\nCopyright:\n * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.\n * Copyright (c) 2008 Alexander von Gernler. All rights reserved.\nLicense:\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n============================================\n\nlib/accelerated/x86/elf/aes-ssse3-x86.s\nlib/accelerated/x86/macosx/aes-ssse3-x86.s\n\nUpstream Authors: Mike Hamburg (Stanford University)\n\nCopyright:\n * Mike Hamburg (Stanford University), 2009.\nLicense:\n Public domain.\n\n============================================\n\nlib/system/inet_pton.c\n\nUpstream Authors: Internet Software Consortium\n\nCopyright/License:\n * Copyright (c) 1996,1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\n============================================\n\nlib/extras/hex.*\nAuthor: Rusty Russell <rusty at rustcorp.com.au>\nComment: http://ccodearchive.net/info/str/hex.html\nLicense: CC0 license\n Statement of Purpose\n\n The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\").\n\n Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.\n\n For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.\n\n 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following:\n\n the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;\n moral rights retained by the original author(s) and/or performer(s);\n publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;\n rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and\n other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.\n\n 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.\n\n 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.\n\n 4. Limitations and Disclaimers.\n\n No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.\n Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.\n Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.\n Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.\n\n============================================\n\ndoc/examples/tlsproxy/\nCopyright: Copyright (c) 2016 Wrymouth Innovation Ltd\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n============================================\n\nFiles: tests/pkcs11/pkcs11-mock.*\nCopyright: 2011-2016 The Pkcs11Interop Project\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\nX-Comment: Written originally for the Pkcs11Interop project by:\n Jaroslav IMRICH <jimrich at jimrich.sk>\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n============================================\n\nlib/unistring/*\nAuthor: Bruno Haible <bruno at clisp.org>\nCopyright (C) 2009-2020 Free Software Foundation, Inc.\nComment: Debian package is built against libunistring-dev package.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: fuzz/gnutls_base64_decoder_fuzzer.c\n fuzz/gnutls_base64_encoder_fuzzer.c\n fuzz/gnutls_ocsp_req_parser_fuzzer.c\n fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c\n fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c\nCopyright: 2017 Red Hat, Inc.\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\nfuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c\n fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c\n fuzz/gnutls_reverse_idna_parser_fuzzer.c\nCopyright 2016 Nikos Mavrogiannopoulos\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nfuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c\n fuzz/gnutls_x509_parser_fuzzer.c\nCopyright 2016 Google Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nFiles: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c\nCopyright: 2016 Google Inc.\n 2017 Red Hat, Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n\nFiles: fuzz/main.c\nCopyright: 2017 Tim Ruehsen\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n\nFiles: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h\n fuzz/gnutls_psk_server_fuzzer.c\n fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c\n fuzz/gnutls_srp_server_fuzzer.c\n fuzz/handshake.h\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c\nCopyright: 2017 Nikos Mavrogiannopoulos\n 2019 Tom Vrancken (dev at tomvrancken.nl)\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_x509_crq_parser_fuzzer.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPLv2.1+\n\nFiles: lib/compress.c\nCopyright: 2017-2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/compress.h lib/ext/compress_certificate.c\n lib/ext/compress_certificate.h tests/cipher-padding.c\n tests/ktls.sh tests/pkcs7-verify-double-free.c\nCopyright: 2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/backport/block-internal.h\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\n 2018 Red Hat, Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/init.c\nCopyright: 2010-2012 Free Software Foundation, Inc.\n 2022 Tobias Heider <tobias.heider at canonical.com>\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c\n lib/nettle/gost/magma.c\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h\n lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c\n lib/nettle/int/provable-prime.c\nCopyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h\nCopyright: 2013 2017 Red Hat\n 2008 Free Software Foundation, Inc.\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/rsa-keygen-fips186.c\nCopyright: 2002 Niels M\u00f6ller\n 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h\nCopyright: 2001 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/write-le32.c\nCopyright: 2001, 2011 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/block8.h\nCopyright: 2005, 2014 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/mpn-base256.c\n lib/nettle/int/mpn-base256.h\nCopyright: 2013 Niels M\u00f6ller\n 2013 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost28147.h\nCopyright: 2015 Dmitry Eremin-Solenikov\n 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog-meta.c\nCopyright: 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-gost.h\nCopyright: 2001, 2002 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-streebog.c\nCopyright: 2016 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/nettle-write.h\nCopyright: 2010 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.c\nCopyright: 2013-2015 Dmitry Eremin-Solenikov\nComment: Based on my code in libgcrypt.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.h\nCopyright: 2015 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h\n lib/nettle/gost/magma.h\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa2.h\nCopyright: 2015 Dmity Eremin-Solenikov\n 2013 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa-mask.c\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost-wrap.c\nCopyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nFiles: lib/nettle/gost/gost28147.c\nCopyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense:\n based on Russian standard GOST 28147-89\n * For English description, check RFC 5830.\n * S-Boxes are expanded from the tables defined in RFC4357:\n * https://tools.ietf.org/html/rfc4357\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/rnd-fuzzer.c\nCopyright 2017 Red Hat\n Copyright 1995-2017 Free Software Foundation, Inc.\nLicense\n * This file is part of the GNU C Library.\n * Contributed by Ulrich Drepper <drepper at gnu.ai.mit.edu>, August 1995.\n *\n * This file is part of GnuTLS.\n *\n * Libgcrypt is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * Libgcrypt is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this program; if not, see <http://www.gnu.org/licenses/>.\n\nFiles: lib/name_val_array.h\nLicense: LGPLv3+_or_GPLv2+\nCopyright: 2011-2019 Free Software Foundation, Inc.\n 2019 Red Hat, Inc\n\nLicense: LGPLv3+_or_GPLv2+\n * This program is free software: you can redistribute it and/or\n * modify it under the terms of either:\n *\n * * the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 3 of the License, or (at your\n * option) any later version.\n *\n * or\n *\n * * the GNU General Public License as published by the Free\n * Software Foundation; either version 2 of the License, or (at your\n * option) any later version.\n *\n * or both in parallel, as here.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * General Public License for more details.\n *\n * You should have received copies of the GNU General Public License and\n * the GNU Lesser General Public License along with this program. If\n * not, see http://www.gnu.org/licenses/.\n\nFiles: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk\nCopyright: 2021-2022 Daiki Ueno\nLicense: LGPLv2.1+\n\n\nFiles: tests/no-extensions.c tests/system-override-curves.sh\n tests/system-override-hash.c tests/resume-lifetime.c\n tests/system-override-kx.sh tests/system-override-profiles.sh\n tests/system-override-sig.c tests/system-override-sig-hash.sh\n tests/system-override-tls.sh tests/system-override-versions.sh\n tests/iov.c tests/tls13-without-timeout-func.c\n tests/cert-tests/certtool-crl-decoding.sh\n tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh\n tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh\n tests/ciphersuite-name.c\n tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh\n tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh\n tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh\n tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh\n tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh\n tests/fips-rsa-sizes.c\n tests/ocsp-tests/ocsp-load-chain.sh\n tests/ocsp-tests/ocsp-must-staple-connection.sh\n tests/ocsp-tests/ocsptool.sh\n tests/tls13/compress-cert-cli.c\n tests/tls13/hello_retry_request_resume.c\n tests/client-secrets.h\n tests/sanity-lib.sh\n tests/server-secrets.h\n tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c\n tests/tls13/compress-cert-neg.c\n tests/tls13/psk-ke-modes.c\nLicense: GPLv3+\nCopyright: 2014-2022 Red Hat, Inc\n\nFiles: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh\n tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh\n tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh\n tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh\n tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh\n tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh\n tests/cert-tests/provable-privkey-dsa2048.sh\n tests/cert-tests/provable-privkey-gen-default.sh\n tests/cert-tests/provable-privkey-rsa2048.sh\n tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n\nFiles: tests/openconnect-dtls12.c tests/system-override-invalid.sh\n tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh\nLicense: GPLv3+\nCopyright: 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-ok.c\nLicense: GPLv3+\nCopyright: 2016-2019 Tim Kosse\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-missing.c\nLicense: GPLv3+\nCopyright: 2016 Tim Kosse\n\nFiles: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh\n tests/cert-tests/reject-invalid-time.sh\n tests/cert-tests/tolerate-invalid-time.sh\n tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh\n tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c\n tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh\n tests/dtls/dtls-resume.sh\nLicense: GPLv3+\nCopyright: 2016-2017 Red Hat, Inc.\n\nFiles: tests/kdf-api.c\nLicense: LGPLv2.1+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: lib/fipshmac.c\nLicense: LGPLv2.1+\nCopyright: 2020-2022 Red Hat, Inc.\n\nFiles: tests/missingissuer_aia.c tests/missingissuer.c\nLicense: GPLv3+\nCopyright: 2008-2014 Free Software Foundation, Inc.\n\nFiles: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h\n tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh\n tests/cert-tests/pkcs12-encode.sh\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2016 2017 Red Hat, Inc.\n\nFiles: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c\nLicense: GPLv3+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: tests/status-request-revoked.c tests/cert-tests/certtool.sh\n tests/cert-tests/pkcs7.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n 2018 2020 Red Hat, Inc.\n\nFiles: tests/resume-with-record-size-limit.c\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2016-2019 Red Hat, Inc.\n\nFiles: tests/cipher-alignment.c\nLicense: GPLv3+\nCopyright: 2004-2015 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2015 Red Hat, Inc\n\nFiles: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh\n tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh\nLicense: GPLv3+\nCopyright: 2015 Red Hat, Inc.\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/x509-upnconstraint.c\nLicense: GPLv3+\nCopyright: 2022 Brian Wickman\n\nFiles: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c\nLicense: GPLv3+\nCopyright: 2017-2019 Red Hat, Inc.\n\nFiles: tests/tls13/no-auto-send-ticket.c\nLicense: GPLv3+\nCopyright: 2017-2020 Red Hat, Inc.\n\nFiles: tests/sign-verify-newapi.c\nLicense: GPLv3+\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2017-2019 Red Hat, Inc.\n\nFiles: tests/buffer.c\nLicense: GPLv3+\nCopyright: 2019 Tim R\u00fchsen\n\nFiles: tests/gnutls-cli-rawpk.sh\nLicense: GPLv3+\nCopyright: 2019 Tom Vrancken (dev at tomvrancken.nl)\n\nFiles: tests/system-override-default-priority-string.sh\nLicense: GPLv3+\nCopyright: 2019 Canonical, Ltd.\n\nFiles: tests/x509cert-dntypes.c\nLicense: GPLv3+\nCopyright: 2020 Pierre Ossman for Cendio AB\n\nFiles: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c\nLicense: LGPLv2.1+\nCopyright: 2019 Red Hat, Inc.\n\nFiles: tests/pskself2.c\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2019 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs12-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2016 Red Hat, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs7-list-sign.sh\nCopyright: 2017 Karl Tarbe\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs8-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2004-2006, 2010, 2012 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/id-on-xmppAddr.c\nCopyright: 2021 Steffen Jaeckel\nLicense: GPLv3+\n\nFiles: tests/ocsp-tests/ocsp-tls-connection.sh\nCopyright: 2016 Thomas Klute\nLicense: GPLv3+\n\nFiles: tests/tls-channel-binding.c\nCopyright: 2021 Ruslan N. Marchenko\nLicense: GPLv3+\n\nFiles: lib/accelerated/afalg.c\nCopyright: 2017 Stephan Mueller <smueller at chronox.de>\nLicense: LGPLv2.1+\n\n\nFiles: lib/inih/*\nCopyright: 2009-2019, Ben Hoyt\nLicense: BSD-3-Clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Ben Hoyt nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nComment: https://github.com/benhoyt/inih\n~\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "CC0 license",
+ "text": {
+ "content": "This package was debianized by Ivo Timmermans <ivo at debian.org> on\nFri, 3 Aug 2001 10:00:42 +0200.\nIt was later taken over by Matthias Urlichs <smurf at debian.org> and is now\nmaintained by Andreas Metzler <ametzler at debian.org> Eric Dorland\n<eric at debian.org>, James Westby <jw+debian at jameswestby.net>\n\n\nIt was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/\n\nUpstream Authors (from AUTHORS file):\n8X------------------------------------\nThe authors list is autogenerated from the git history; sorted by number of commits\n\nNikos Mavrogiannopoulos <nmav at gnutls.org>\nSimon Josefsson <jas at josefsson.org>\nDaiki Ueno <ueno at gnu.org>\nDmitry Baryshkov <dbaryshkov at gmail.com>\nTim R\u00fchsen <tim.ruehsen at gmx.de>\nLudovic Court\u00e8s <ludo at gnu.org>\nTimo Schulz <twoaday at gnutls.org>\nJonathan Bastien-Filiatrault <joe at x2a.org>\nAndreas Metzler <ametzler at debian.org>\nAlon Bar-Lev <alon.barlev at gmail.com>\nAlexander Sosedkin <asosedkin at redhat.com>\nDaniel Kahn Gillmor <dkg at fifthhorseman.net>\nTom Vrancken <dev at tomvrancken.nl>\nZoltan Fridrich <zfridric at redhat.com>\nMartin Storsjo <martin at martin.st>\nTim Kosse <tim.kosse at filezilla-project.org>\nSimo Sorce <simo at redhat.com>\nFabian Keil <fk at fabiankeil.de>\nFabio Fiorina <fiorinaf at gnutls.org>\nStef Walter <stefw at redhat.com>\nAnderson Toshiyuki Sasaki <ansasaki at redhat.com>\nArmin Burgmeier <armin at arbur.net>\nFranti\u0161ek Kren\u017eelok <krenzelok.frantisek at gmail.com>\nAndrew McDonald <admcd at gnutls.org>\nFiona Klute <fiona.klute at gmx.de>\nAlex Gaynor <alex.gaynor at gmail.com>\nAnder Juaristi <a at juaristi.eus>\nMartin Ukrop <mukrop at redhat.com>\nJaak Ristioja <jaak.ristioja at cyber.ee>\nAttila Molnar <attilamolnar at hush.com>\nHugo Beauz\u00e9e-Luyssen <hugo at beauzee.fr>\nStefan Berger <stefanb at linux.ibm.com>\nSteve Lhomme <robux4 at ycbcr.xyz>\nJakub Jelen <jjelen at redhat.com>\nMartin Sucha <anty.sk+git at gmail.com>\nDavid Woodhouse <dwmw2 at infradead.org>\nJan Vcelak <jan.vcelak at nic.cz>\nKevin Cernekee <cernekee at gmail.com>\nNikolay Sivov <nsivov at codeweavers.com>\nSahana Prasad <sahana at redhat.com>\nMichael Catanzaro <mcatanzaro at gnome.org>\nDaniel Lenski <dlenski at gmail.com>\nJonasZhou <JonasZhou at zhaoxin.com>\nStefan S\u00f8rensen <stefan.sorensen at spectralink.com>\nTobias Heider <tobias.heider at canonical.com>\nAdam Sampson <ats at offog.org>\nAlfredo Pironti <alfredo at pironti.eu>\nBrad Hards <bradh at frogmouth.net>\nDimitri John Ledkov <xnox at ubuntu.com>\nHubert Kario <hkario at redhat.com>\nMichael Weiser <michael.weiser at gmx.de>\nPatrick Pelletier <code at funwithsoftware.org>\nRolf Eike Beer <eike at sf-mail.de>\nRuslan N. Marchenko <me at ruff.mobi>\nSjoerd Simons <sjoerd.simons at collabora.co.uk>\nStefan B\u00fchler <stbuehler at web.de>\nThomas Klute <thomas2.klute at uni-dortmund.de>\nWolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>\nChristian Grothoff <christian at grothoff.org>\nDaniel P. Berrange <berrange at redhat.com>\nEvgeny Grin <k2k at narod.ru>\nGustavo Zacarias <gustavo at zacarias.com.ar>\nJames Bottomley <James.Bottomley at HansenPartnership.com>\nJi\u0159\u00ed Klime\u0161 <jklimes at redhat.com>\nKarsten Ohme <k_o_ at users.sourceforge.net>\nKurt Roeckx <kurt at roeckx.be>\nPeter Wu <peter at lekensteyn.nl>\nStanislav Zidek <szidek at redhat.com>\nStephan Mueller <smueller at chronox.de>\nThierry Quemerais <tquemerais at awox.com>\nTom Carroll <incentivedesign at gmail.com>\nVitezslav Cizek <vcizek at suse.com>\nAlessandro Ghedini <alessandro at ghedini.me>\nAlex Monk <krenair at gmail.com>\nBenjamin Herrenschmidt <benh at kernel.crashing.org>\nBernhard M. Wiedemann <bwiedemann at suse.de>\nCraig Gallek <cgallek at gmail.com>\nDavid Caldwell <david at porkrind.org>\nDiego Elio Petten\u00f2 <flameeyes at flameeyes.eu>\nElta Koepp <alexi_2019 at protonmail.com>\nFabrice Fontaine <fontaine.fabrice at gmail.com>\nGiuseppe Scrivano <gscrivano at gnu.org>\nIlya Tumaykin <itumaykin at gmail.com>\nKarl Tarbe <karl.tarbe at cyber.ee>\nKe Zhao <kzhao at redhat.com>\nLeonardo Bras <leobras.c at gmail.com>\nMark Brand <mabrand at mabrand.nl>\nMatthias-Christian Ott <ott at mirix.org>\nMaya Rashish <coypu at sdf.org>\nMichael Catanzaro <mcatanzaro at igalia.com>\nMicha\u0142 G\u00f3rny <mgorny at gentoo.org>\nMiroslav Lichvar <mlichvar at redhat.com>\nPedro Monreal <pmgdeb at gmail.com>\nPedro Monreal <pmonrealgonzalez at suse.de>\nPetr P\u00edsa\u0159 <petr.pisar at atlas.cz>\nPierre Ossman <ossman at cendio.se>\nRoman Bogorodskiy <bogorodskiy at gmail.com>\nSam James <sam at gentoo.org>\nSimon South <simon at simonsouth.net>\nSteffen Jaeckel <jaeckel-floss at eyet-services.de>\nSteve Dispensa <dispensa at phonefactor.com>\nnia <nia at NetBSD.org>\nraspa0 <raspa0 at protonmail.com>\nAlban Crequy <alban.crequy at collabora.co.uk>\nAlbrecht Dre\u00df <albrecht.dress at arcor.de>\nAleksei Nikiforov <darktemplar at basealt.ru>\nAlexander Kanavin <alex.kanavin at gmail.com>\nAlexandre Bique <bique.alexandre at gmail.com>\nAndreas Schneider <asn at samba.org>\nAndreas Schwab <schwab at suse.de>\nAsad Mehmood <asad78611 at googlemail.com>\nAvinash Sonawane <rootkea at gmail.com>\nBas van Schaik <gitlab.com at s.traiectum.net>\nBjoern Jacke <bjacke at samba.org>\nBj\u00f6rn Jacke <bjacke at samba.org>\nBj\u00f8rn Christensen <bhc at insight.dk>\nBrad Smith <brad at comstyle.com>\nBrian Wickman <bwickman97 at outlook.com>\nCarolin Latze <latze at angry-red-pla.net>\nChen Hongzhi <hongzhi.chen at me.com>\nChris Barry <chris at barry.im>\nColin Walters <walters at verbum.org>\nDan Fandrich <dan at coneharvesters.com>\nDaniel Schaefer <git at danielschaefer.me>\nDavid Walker <david.walker at vcatechnology.com>\nDavid Weber <dave at veryflatcat.com>\nDimitris Apostolou <dimitris.apostolou at icloud.com>\nDmitriy Tsvettsikh <dmitrycvet at gmail.com>\nDosenpfand <m at sad.bz>\nDoug Nazar <nazard at nazar.ca>\nEdward Stangler <estangler at bradmark.com>\nElias Pipping <pipping at exherbo.org>\nElta Koepp <elta_koepp at gmail.com>\nFrank Morgner <morgner at informatik.hu-berlin.de>\nGregor Jasny <gjasny at googlemail.com>\nG\u00fcnther Deschner <gd at samba.org>\nHani Benhabiles <kroosec at gmail.com>\nHannes Reinecke <hare at suse.de>\nHans Leidekker <hans at codeweavers.com>\nIlya V. Matveychikov <i.matveychikov at securitycode.ru>\nJan Palus <jpalus at fastmail.com>\nJared Wong <jaredlwong at gmail.com>\nJason Spafford <nullprogrammer at gmail.com>\nJay Foad <jay.foad at gmail.com>\nJeffrey Walton <noloader at gmail.com>\nJens Lechtenboerger <jens.lechtenboerger at fsfe.org>\nJussi Kukkonen <jussi.kukkonen at intel.com>\nKenneth J. Miller <ken at miller.ec>\nLei Maohui <leimaohui at cn.fujitsu.com>\nLili Quan <13132239506 at 163.com>\nLucas Fisher <lucas.fisher at gmail.com>\nLudwig Nussel <ludwig.nussel at suse.de>\nLuis G.F <luisgf at gmail.com>\nLuke Dashjr <luke-jr+git at utopios.org>\nMaciej S. Szmigiero <mail at maciej.szmigiero.name>\nMaks Naumov <maksqwe1 at ukr.net>\nMarcin Cie\u015blak <saper at saper.info>\nMarcus Meissner <meissner at suse.de>\nMarga Manterola <marga at google.com>\nMarius Bakke <mbakke at fastmail.com>\nMarti Raudsepp <marti at juffo.org>\nMarvin Scholz <epirat07 at gmail.com>\nMatt Turner <mattst88 at gmail.com>\nMatt Whitlock <matt at whitlock.name>\nMicah Anderson <micah at riseup.net>\nMichael Catanzaro <mcatanzaro at redhat.com>\nNick Alcock <nick.alcock at oracle.com>\nNick Child <nick.child at ibm.com>\nNicolas Dufresne <nicolas.dufresne at collabora.com>\nNils Maier <maierman at web.de>\nNorbert Pocs <npocs at redhat.com>\nOlga <olyasib12 at gmail.com>\nOndrej Moris <omoris at redhat.com>\nPetr Pavlu <petr.pavlu at suse.com>\nPhilippe Proulx <eeppeliteloop at gmail.com>\nPhilippe Widmer <pw at earthwave.ch>\nR. Andrew Bailey <bailey at akamai.com>\nRaj Raman <rajramanca at gmail.com>\nRemi Olivier <remi_8 at hotmail.com>\nRical Jasan <ricaljasan at pacific.net>\nRicardo M. Correia <rcorreia at wizy.org>\nRichard Costa <richard.costa at suse.com>\nRickard Bellgrim <rickard at opendnssec.org>\nRobert Scheck <robert at fedoraproject.org>\nRoberto Newmon <robertonewmon at fake-box.com>\nRoss Nicholson <phunkyfish at gmail.com>\nRowan Thorpe <rowan at rowanthorpe.com>\nSUMIT AGGARWAL <aggarwal.s at samsung.com>\nSadie Powell <sadie at witchery.services>\nSaurav Babu <saurav.babu at samsung.com>\nSebastian Dr\u00f6ge <sebastian at centricular.com>\nSeppo Yli-Olli <seppo.yliolli at gmail.com>\nSimon Arlott <sa.me.uk>\nTatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>\nThomas Klausner <wiz at NetBSD.org>\nTobias Polzer <tobias.polzer at fau.de>\nTomas Hoger <thoger at redhat.com>\nTomas Mraz <tmraz at fedoraproject.org>\nTristan Matthews <le.businessman at gmail.com>\nWerner Koch <wk at gnupg.org>\nYuriy M. Kaminskiy <yumkam at gmail.com>\nihsinme <ihsinme at gmail.com>\nrrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>\nsskaje <sskaje at gmail.com>\n\u0141ukasz Stelmach <stlman at poczta.fm>\n\n\nThe translators list is autogenerated from po file history\n\nAnders Jonsson\nBenno Schulenberg\nCristian Oth\u00f3n Mart\u00ednez Vera\nFelipe Castro\nJakub Bogusz\nJorma Karvonen\nMario Bl\u00e4ttermann\nMilo Casagrande\nMingye Wang (Arthur2e5)\nPetr Pisar\nRafael Fontenelle\nRemus-Gabriel Chelu\nSharuzzaman Ahmat Raslan\nSt\u00e9phane Aulery\nTemuri Doghonadze\nTr\u1ea7n Ng\u1ecdc Qu\u00e2n\nYuri Chornoivan\n\u041c\u0438\u0440\u043e\u0441\u043b\u0430\u0432 \u041d\u0438\u043a\u043e\u043b\u0438\u045b\n8X------------------------------------\n\nLicense: The main library is licensed under GNU Lesser\nGeneral Public License (LGPL) version 2.1+, Gnutls Extra (which is currently\njust the openssl wrapper library), build system, testsuite and commandline\nutilities are licenced under the GNU General Public License version 3+. The\nGuile bindings use the same license as the respective underlying library,\ni.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.\n\nHowever to be able to use and link against libgnutls a program needs to be\navailable under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS\nrequires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed\nLGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also\nis dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier\nversion were LGPLv3+ only.)\n\nCopyright:\n--------------------\n/* -*- c -*-\n * Copyright (C) 2000-2019 Free Software Foundation, Inc.\n *\n * Author: Nikos Mavrogiannopoulos\n *\n * This file is part of GnuTLS.\n *\n * The GnuTLS is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public License\n * as published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>\n *\n */\n--------------------\n/*\n * Copyright (C) 2004-2015 Free Software Foundation, Inc.\n * Copyright (c) 2002 Andrew McDonald <andrew at mcdonald.org.uk>\n *\n * This file is part of GnuTLS-EXTRA.\n *\n * GnuTLS-extra is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * GnuTLS-extra is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n--------------------\n\nThe documentation is distributed under the terms of the GNU Free\nDocumentation License (FDL):\n--------------------\nCopyright (C) 2001-2023 Free Software Foundation, Inc.\nCopyright (C) 2001-2023 Nikos Mavrogiannopoulos\n\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n--------------------\n\n--------------------\nFrom December 2012 onwards FSF is not the sole copyright holder of GnuTLS\nanymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),\nthe headers currently also list these authors/copyright holders::\n* Adam Sampson\n* Alexander von Gernler\n* Andrew McDonald\n* ARPA2 project\n* Attila Molnar\n* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin\n* Brian Wickman\n* Canonical, Ltd.\n* Christian Grothoff\n* Daiki Ueno\n* David Woodhouse\n* Dmitry Eremin-Solenikov\n* Dyalog Ltd.\n* Fiona Klute\n* Frank Morgner\n* Fratni\u0161ek Kren\u017eelok\n* Guillaume Roguez\n* Hugo Beauz\u00e9e-Luyssen\n* IBM Corporation\n* INRIA Paris-Rocquencourt\n* Intel Corporation.\n* Joe Orton\n* Karl Tarbe\n* KU Leuven\n* Lucas Fisher\n* Markus Friedl\n* Michael Zucchi\n* Niels M\u00f6ller\n* Nikos Mavrogiannopoulos\n* Paul Sheer\n* Pierre Ossman\n* Red Hat, Inc.\n* Ruslan N. Marchenko\n* Sean Buckheister\n* Simon Josefsson\n* Stephan Mueller\n* The Pkcs11Interop Project\n* Thomas Klute\n* Tim Kosse\n* Tim R\u00fchsen\n* Tobias Heider\n* Tom Vrancken\n--------------------\n\n\n\nOn Debian GNU/Linux systems, the complete text of the latest version of\nthe GNU Lesser General Public License can be found in\n`/usr/share/common-licenses/LGPL' v3 of the license in\n`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can\nbe found in `/usr/share/common-licenses/GPL' (version 3 in\n/usr/share/common-licenses/GPL-3) The GNU Free Documentation\nLicense is available under /usr/share/common-licenses/GFDL-1.3.\n\n============================================\n\nExcerpt from upstream's README:\n\nLICENSING\n=========\n\nSince GnuTLS version 3.1.10, the core library has been released under\nthe GNU Lesser General Public License (LGPL) version 2.1 or later.\n\nNote, however, that version 6.0.0 and later of the gmplib library used\nby GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and\nas such binaries of this library need to adhere to either LGPLv3+ or\nGPLv2+ license.\n\n\n\n\nThe GNU LGPL applies to the main GnuTLS library, while the\nincluded applications as well as gnutls-openssl\nlibrary are under the GNU GPL version 3. The gnutls library is\nlocated in the lib/ and libdane/ directories, while the applications\nin src/ and, the gnutls-openssl library is at extra/.\n\nFor any copyright year range specified as YYYY-ZZZZ in this package\nnote that the range specifies every single year in that closed interval.\n============================================\n============================================\n\nNon FSF code\n\n============================================\n\nlib/accelerated/x86 contains code by Andy Polyakov <appro at openssl.org>,\ncopyright is not assigned to the FSF. The code is licensed under the\nCRYPTOGAMS license.\n\n--------------------\n# Copyright (c) 2011-2016, Andy Polyakov by <appro at openssl.org>\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# * Redistributions of source code must retain copyright notices,\n# this list of conditions and the following disclaimer.\n#\n# * Redistributions in binary form must reproduce the above\n# copyright notice, this list of conditions and the following\n# disclaimer in the documentation and/or other materials\n# provided with the distribution.\n#\n# * Neither the name of the Andy Polyakov nor the names of its\n# copyright holder and contributors may be used to endorse or\n# promote products derived from this software without specific\n# prior written permission.\n#\n# ALTERNATIVELY, provided that this notice is retained in full, this\n# product may be distributed under the terms of the GNU General Public\n# License (GPL), in which case the provisions of the GPL apply INSTEAD OF\n# those given above.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS\n# \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--------------------\n\n============================================\n\nlib/extras/randomart.*\n\n\nUpstream Authors: Markus Friedl\n Alexander von Gernler\n\nCopyright:\n * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.\n * Copyright (c) 2008 Alexander von Gernler. All rights reserved.\nLicense:\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n============================================\n\nlib/accelerated/x86/elf/aes-ssse3-x86.s\nlib/accelerated/x86/macosx/aes-ssse3-x86.s\n\nUpstream Authors: Mike Hamburg (Stanford University)\n\nCopyright:\n * Mike Hamburg (Stanford University), 2009.\nLicense:\n Public domain.\n\n============================================\n\nlib/system/inet_pton.c\n\nUpstream Authors: Internet Software Consortium\n\nCopyright/License:\n * Copyright (c) 1996,1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\n============================================\n\nlib/extras/hex.*\nAuthor: Rusty Russell <rusty at rustcorp.com.au>\nComment: http://ccodearchive.net/info/str/hex.html\nLicense: CC0 license\n Statement of Purpose\n\n The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\").\n\n Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.\n\n For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.\n\n 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following:\n\n the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;\n moral rights retained by the original author(s) and/or performer(s);\n publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;\n rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and\n other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.\n\n 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.\n\n 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.\n\n 4. Limitations and Disclaimers.\n\n No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.\n Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.\n Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.\n Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.\n\n============================================\n\ndoc/examples/tlsproxy/\nCopyright: Copyright (c) 2016 Wrymouth Innovation Ltd\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n============================================\n\nFiles: tests/pkcs11/pkcs11-mock.*\nCopyright: 2011-2016 The Pkcs11Interop Project\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\nX-Comment: Written originally for the Pkcs11Interop project by:\n Jaroslav IMRICH <jimrich at jimrich.sk>\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n============================================\n\nlib/unistring/*\nAuthor: Bruno Haible <bruno at clisp.org>\nCopyright (C) 2009-2020 Free Software Foundation, Inc.\nComment: Debian package is built against libunistring-dev package.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: fuzz/gnutls_base64_decoder_fuzzer.c\n fuzz/gnutls_base64_encoder_fuzzer.c\n fuzz/gnutls_ocsp_req_parser_fuzzer.c\n fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c\n fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c\nCopyright: 2017 Red Hat, Inc.\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\nfuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c\n fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c\n fuzz/gnutls_reverse_idna_parser_fuzzer.c\nCopyright 2016 Nikos Mavrogiannopoulos\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nfuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c\n fuzz/gnutls_x509_parser_fuzzer.c\nCopyright 2016 Google Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nFiles: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c\nCopyright: 2016 Google Inc.\n 2017 Red Hat, Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n\nFiles: fuzz/main.c\nCopyright: 2017 Tim Ruehsen\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n\nFiles: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h\n fuzz/gnutls_psk_server_fuzzer.c\n fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c\n fuzz/gnutls_srp_server_fuzzer.c\n fuzz/handshake.h\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c\nCopyright: 2017 Nikos Mavrogiannopoulos\n 2019 Tom Vrancken (dev at tomvrancken.nl)\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_x509_crq_parser_fuzzer.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPLv2.1+\n\nFiles: lib/compress.c\nCopyright: 2017-2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/compress.h lib/ext/compress_certificate.c\n lib/ext/compress_certificate.h tests/cipher-padding.c\n tests/ktls.sh tests/pkcs7-verify-double-free.c\nCopyright: 2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/backport/block-internal.h\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\n 2018 Red Hat, Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/init.c\nCopyright: 2010-2012 Free Software Foundation, Inc.\n 2022 Tobias Heider <tobias.heider at canonical.com>\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c\n lib/nettle/gost/magma.c\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h\n lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c\n lib/nettle/int/provable-prime.c\nCopyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h\nCopyright: 2013 2017 Red Hat\n 2008 Free Software Foundation, Inc.\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/rsa-keygen-fips186.c\nCopyright: 2002 Niels M\u00f6ller\n 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h\nCopyright: 2001 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/write-le32.c\nCopyright: 2001, 2011 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/block8.h\nCopyright: 2005, 2014 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/mpn-base256.c\n lib/nettle/int/mpn-base256.h\nCopyright: 2013 Niels M\u00f6ller\n 2013 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost28147.h\nCopyright: 2015 Dmitry Eremin-Solenikov\n 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog-meta.c\nCopyright: 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-gost.h\nCopyright: 2001, 2002 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-streebog.c\nCopyright: 2016 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/nettle-write.h\nCopyright: 2010 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.c\nCopyright: 2013-2015 Dmitry Eremin-Solenikov\nComment: Based on my code in libgcrypt.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.h\nCopyright: 2015 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h\n lib/nettle/gost/magma.h\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa2.h\nCopyright: 2015 Dmity Eremin-Solenikov\n 2013 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa-mask.c\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost-wrap.c\nCopyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nFiles: lib/nettle/gost/gost28147.c\nCopyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense:\n based on Russian standard GOST 28147-89\n * For English description, check RFC 5830.\n * S-Boxes are expanded from the tables defined in RFC4357:\n * https://tools.ietf.org/html/rfc4357\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/rnd-fuzzer.c\nCopyright 2017 Red Hat\n Copyright 1995-2017 Free Software Foundation, Inc.\nLicense\n * This file is part of the GNU C Library.\n * Contributed by Ulrich Drepper <drepper at gnu.ai.mit.edu>, August 1995.\n *\n * This file is part of GnuTLS.\n *\n * Libgcrypt is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * Libgcrypt is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this program; if not, see <http://www.gnu.org/licenses/>.\n\nFiles: lib/name_val_array.h\nLicense: LGPLv3+_or_GPLv2+\nCopyright: 2011-2019 Free Software Foundation, Inc.\n 2019 Red Hat, Inc\n\nLicense: LGPLv3+_or_GPLv2+\n * This program is free software: you can redistribute it and/or\n * modify it under the terms of either:\n *\n * * the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 3 of the License, or (at your\n * option) any later version.\n *\n * or\n *\n * * the GNU General Public License as published by the Free\n * Software Foundation; either version 2 of the License, or (at your\n * option) any later version.\n *\n * or both in parallel, as here.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * General Public License for more details.\n *\n * You should have received copies of the GNU General Public License and\n * the GNU Lesser General Public License along with this program. If\n * not, see http://www.gnu.org/licenses/.\n\nFiles: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk\nCopyright: 2021-2022 Daiki Ueno\nLicense: LGPLv2.1+\n\n\nFiles: tests/no-extensions.c tests/system-override-curves.sh\n tests/system-override-hash.c tests/resume-lifetime.c\n tests/system-override-kx.sh tests/system-override-profiles.sh\n tests/system-override-sig.c tests/system-override-sig-hash.sh\n tests/system-override-tls.sh tests/system-override-versions.sh\n tests/iov.c tests/tls13-without-timeout-func.c\n tests/cert-tests/certtool-crl-decoding.sh\n tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh\n tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh\n tests/ciphersuite-name.c\n tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh\n tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh\n tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh\n tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh\n tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh\n tests/fips-rsa-sizes.c\n tests/ocsp-tests/ocsp-load-chain.sh\n tests/ocsp-tests/ocsp-must-staple-connection.sh\n tests/ocsp-tests/ocsptool.sh\n tests/tls13/compress-cert-cli.c\n tests/tls13/hello_retry_request_resume.c\n tests/client-secrets.h\n tests/sanity-lib.sh\n tests/server-secrets.h\n tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c\n tests/tls13/compress-cert-neg.c\n tests/tls13/psk-ke-modes.c\nLicense: GPLv3+\nCopyright: 2014-2022 Red Hat, Inc\n\nFiles: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh\n tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh\n tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh\n tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh\n tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh\n tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh\n tests/cert-tests/provable-privkey-dsa2048.sh\n tests/cert-tests/provable-privkey-gen-default.sh\n tests/cert-tests/provable-privkey-rsa2048.sh\n tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n\nFiles: tests/openconnect-dtls12.c tests/system-override-invalid.sh\n tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh\nLicense: GPLv3+\nCopyright: 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-ok.c\nLicense: GPLv3+\nCopyright: 2016-2019 Tim Kosse\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-missing.c\nLicense: GPLv3+\nCopyright: 2016 Tim Kosse\n\nFiles: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh\n tests/cert-tests/reject-invalid-time.sh\n tests/cert-tests/tolerate-invalid-time.sh\n tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh\n tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c\n tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh\n tests/dtls/dtls-resume.sh\nLicense: GPLv3+\nCopyright: 2016-2017 Red Hat, Inc.\n\nFiles: tests/kdf-api.c\nLicense: LGPLv2.1+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: lib/fipshmac.c\nLicense: LGPLv2.1+\nCopyright: 2020-2022 Red Hat, Inc.\n\nFiles: tests/missingissuer_aia.c tests/missingissuer.c\nLicense: GPLv3+\nCopyright: 2008-2014 Free Software Foundation, Inc.\n\nFiles: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h\n tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh\n tests/cert-tests/pkcs12-encode.sh\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2016 2017 Red Hat, Inc.\n\nFiles: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c\nLicense: GPLv3+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: tests/status-request-revoked.c tests/cert-tests/certtool.sh\n tests/cert-tests/pkcs7.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n 2018 2020 Red Hat, Inc.\n\nFiles: tests/resume-with-record-size-limit.c\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2016-2019 Red Hat, Inc.\n\nFiles: tests/cipher-alignment.c\nLicense: GPLv3+\nCopyright: 2004-2015 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2015 Red Hat, Inc\n\nFiles: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh\n tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh\nLicense: GPLv3+\nCopyright: 2015 Red Hat, Inc.\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/x509-upnconstraint.c\nLicense: GPLv3+\nCopyright: 2022 Brian Wickman\n\nFiles: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c\nLicense: GPLv3+\nCopyright: 2017-2019 Red Hat, Inc.\n\nFiles: tests/tls13/no-auto-send-ticket.c\nLicense: GPLv3+\nCopyright: 2017-2020 Red Hat, Inc.\n\nFiles: tests/sign-verify-newapi.c\nLicense: GPLv3+\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2017-2019 Red Hat, Inc.\n\nFiles: tests/buffer.c\nLicense: GPLv3+\nCopyright: 2019 Tim R\u00fchsen\n\nFiles: tests/gnutls-cli-rawpk.sh\nLicense: GPLv3+\nCopyright: 2019 Tom Vrancken (dev at tomvrancken.nl)\n\nFiles: tests/system-override-default-priority-string.sh\nLicense: GPLv3+\nCopyright: 2019 Canonical, Ltd.\n\nFiles: tests/x509cert-dntypes.c\nLicense: GPLv3+\nCopyright: 2020 Pierre Ossman for Cendio AB\n\nFiles: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c\nLicense: LGPLv2.1+\nCopyright: 2019 Red Hat, Inc.\n\nFiles: tests/pskself2.c\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2019 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs12-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2016 Red Hat, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs7-list-sign.sh\nCopyright: 2017 Karl Tarbe\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs8-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2004-2006, 2010, 2012 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/id-on-xmppAddr.c\nCopyright: 2021 Steffen Jaeckel\nLicense: GPLv3+\n\nFiles: tests/ocsp-tests/ocsp-tls-connection.sh\nCopyright: 2016 Thomas Klute\nLicense: GPLv3+\n\nFiles: tests/tls-channel-binding.c\nCopyright: 2021 Ruslan N. Marchenko\nLicense: GPLv3+\n\nFiles: lib/accelerated/afalg.c\nCopyright: 2017 Stephan Mueller <smueller at chronox.de>\nLicense: LGPLv2.1+\n\n\nFiles: lib/inih/*\nCopyright: 2009-2019, Ben Hoyt\nLicense: BSD-3-Clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Ben Hoyt nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nComment: https://github.com/benhoyt/inih\n~\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "LGPLv2.1+",
+ "text": {
+ "content": "This package was debianized by Ivo Timmermans <ivo at debian.org> on\nFri, 3 Aug 2001 10:00:42 +0200.\nIt was later taken over by Matthias Urlichs <smurf at debian.org> and is now\nmaintained by Andreas Metzler <ametzler at debian.org> Eric Dorland\n<eric at debian.org>, James Westby <jw+debian at jameswestby.net>\n\n\nIt was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/\n\nUpstream Authors (from AUTHORS file):\n8X------------------------------------\nThe authors list is autogenerated from the git history; sorted by number of commits\n\nNikos Mavrogiannopoulos <nmav at gnutls.org>\nSimon Josefsson <jas at josefsson.org>\nDaiki Ueno <ueno at gnu.org>\nDmitry Baryshkov <dbaryshkov at gmail.com>\nTim R\u00fchsen <tim.ruehsen at gmx.de>\nLudovic Court\u00e8s <ludo at gnu.org>\nTimo Schulz <twoaday at gnutls.org>\nJonathan Bastien-Filiatrault <joe at x2a.org>\nAndreas Metzler <ametzler at debian.org>\nAlon Bar-Lev <alon.barlev at gmail.com>\nAlexander Sosedkin <asosedkin at redhat.com>\nDaniel Kahn Gillmor <dkg at fifthhorseman.net>\nTom Vrancken <dev at tomvrancken.nl>\nZoltan Fridrich <zfridric at redhat.com>\nMartin Storsjo <martin at martin.st>\nTim Kosse <tim.kosse at filezilla-project.org>\nSimo Sorce <simo at redhat.com>\nFabian Keil <fk at fabiankeil.de>\nFabio Fiorina <fiorinaf at gnutls.org>\nStef Walter <stefw at redhat.com>\nAnderson Toshiyuki Sasaki <ansasaki at redhat.com>\nArmin Burgmeier <armin at arbur.net>\nFranti\u0161ek Kren\u017eelok <krenzelok.frantisek at gmail.com>\nAndrew McDonald <admcd at gnutls.org>\nFiona Klute <fiona.klute at gmx.de>\nAlex Gaynor <alex.gaynor at gmail.com>\nAnder Juaristi <a at juaristi.eus>\nMartin Ukrop <mukrop at redhat.com>\nJaak Ristioja <jaak.ristioja at cyber.ee>\nAttila Molnar <attilamolnar at hush.com>\nHugo Beauz\u00e9e-Luyssen <hugo at beauzee.fr>\nStefan Berger <stefanb at linux.ibm.com>\nSteve Lhomme <robux4 at ycbcr.xyz>\nJakub Jelen <jjelen at redhat.com>\nMartin Sucha <anty.sk+git at gmail.com>\nDavid Woodhouse <dwmw2 at infradead.org>\nJan Vcelak <jan.vcelak at nic.cz>\nKevin Cernekee <cernekee at gmail.com>\nNikolay Sivov <nsivov at codeweavers.com>\nSahana Prasad <sahana at redhat.com>\nMichael Catanzaro <mcatanzaro at gnome.org>\nDaniel Lenski <dlenski at gmail.com>\nJonasZhou <JonasZhou at zhaoxin.com>\nStefan S\u00f8rensen <stefan.sorensen at spectralink.com>\nTobias Heider <tobias.heider at canonical.com>\nAdam Sampson <ats at offog.org>\nAlfredo Pironti <alfredo at pironti.eu>\nBrad Hards <bradh at frogmouth.net>\nDimitri John Ledkov <xnox at ubuntu.com>\nHubert Kario <hkario at redhat.com>\nMichael Weiser <michael.weiser at gmx.de>\nPatrick Pelletier <code at funwithsoftware.org>\nRolf Eike Beer <eike at sf-mail.de>\nRuslan N. Marchenko <me at ruff.mobi>\nSjoerd Simons <sjoerd.simons at collabora.co.uk>\nStefan B\u00fchler <stbuehler at web.de>\nThomas Klute <thomas2.klute at uni-dortmund.de>\nWolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>\nChristian Grothoff <christian at grothoff.org>\nDaniel P. Berrange <berrange at redhat.com>\nEvgeny Grin <k2k at narod.ru>\nGustavo Zacarias <gustavo at zacarias.com.ar>\nJames Bottomley <James.Bottomley at HansenPartnership.com>\nJi\u0159\u00ed Klime\u0161 <jklimes at redhat.com>\nKarsten Ohme <k_o_ at users.sourceforge.net>\nKurt Roeckx <kurt at roeckx.be>\nPeter Wu <peter at lekensteyn.nl>\nStanislav Zidek <szidek at redhat.com>\nStephan Mueller <smueller at chronox.de>\nThierry Quemerais <tquemerais at awox.com>\nTom Carroll <incentivedesign at gmail.com>\nVitezslav Cizek <vcizek at suse.com>\nAlessandro Ghedini <alessandro at ghedini.me>\nAlex Monk <krenair at gmail.com>\nBenjamin Herrenschmidt <benh at kernel.crashing.org>\nBernhard M. Wiedemann <bwiedemann at suse.de>\nCraig Gallek <cgallek at gmail.com>\nDavid Caldwell <david at porkrind.org>\nDiego Elio Petten\u00f2 <flameeyes at flameeyes.eu>\nElta Koepp <alexi_2019 at protonmail.com>\nFabrice Fontaine <fontaine.fabrice at gmail.com>\nGiuseppe Scrivano <gscrivano at gnu.org>\nIlya Tumaykin <itumaykin at gmail.com>\nKarl Tarbe <karl.tarbe at cyber.ee>\nKe Zhao <kzhao at redhat.com>\nLeonardo Bras <leobras.c at gmail.com>\nMark Brand <mabrand at mabrand.nl>\nMatthias-Christian Ott <ott at mirix.org>\nMaya Rashish <coypu at sdf.org>\nMichael Catanzaro <mcatanzaro at igalia.com>\nMicha\u0142 G\u00f3rny <mgorny at gentoo.org>\nMiroslav Lichvar <mlichvar at redhat.com>\nPedro Monreal <pmgdeb at gmail.com>\nPedro Monreal <pmonrealgonzalez at suse.de>\nPetr P\u00edsa\u0159 <petr.pisar at atlas.cz>\nPierre Ossman <ossman at cendio.se>\nRoman Bogorodskiy <bogorodskiy at gmail.com>\nSam James <sam at gentoo.org>\nSimon South <simon at simonsouth.net>\nSteffen Jaeckel <jaeckel-floss at eyet-services.de>\nSteve Dispensa <dispensa at phonefactor.com>\nnia <nia at NetBSD.org>\nraspa0 <raspa0 at protonmail.com>\nAlban Crequy <alban.crequy at collabora.co.uk>\nAlbrecht Dre\u00df <albrecht.dress at arcor.de>\nAleksei Nikiforov <darktemplar at basealt.ru>\nAlexander Kanavin <alex.kanavin at gmail.com>\nAlexandre Bique <bique.alexandre at gmail.com>\nAndreas Schneider <asn at samba.org>\nAndreas Schwab <schwab at suse.de>\nAsad Mehmood <asad78611 at googlemail.com>\nAvinash Sonawane <rootkea at gmail.com>\nBas van Schaik <gitlab.com at s.traiectum.net>\nBjoern Jacke <bjacke at samba.org>\nBj\u00f6rn Jacke <bjacke at samba.org>\nBj\u00f8rn Christensen <bhc at insight.dk>\nBrad Smith <brad at comstyle.com>\nBrian Wickman <bwickman97 at outlook.com>\nCarolin Latze <latze at angry-red-pla.net>\nChen Hongzhi <hongzhi.chen at me.com>\nChris Barry <chris at barry.im>\nColin Walters <walters at verbum.org>\nDan Fandrich <dan at coneharvesters.com>\nDaniel Schaefer <git at danielschaefer.me>\nDavid Walker <david.walker at vcatechnology.com>\nDavid Weber <dave at veryflatcat.com>\nDimitris Apostolou <dimitris.apostolou at icloud.com>\nDmitriy Tsvettsikh <dmitrycvet at gmail.com>\nDosenpfand <m at sad.bz>\nDoug Nazar <nazard at nazar.ca>\nEdward Stangler <estangler at bradmark.com>\nElias Pipping <pipping at exherbo.org>\nElta Koepp <elta_koepp at gmail.com>\nFrank Morgner <morgner at informatik.hu-berlin.de>\nGregor Jasny <gjasny at googlemail.com>\nG\u00fcnther Deschner <gd at samba.org>\nHani Benhabiles <kroosec at gmail.com>\nHannes Reinecke <hare at suse.de>\nHans Leidekker <hans at codeweavers.com>\nIlya V. Matveychikov <i.matveychikov at securitycode.ru>\nJan Palus <jpalus at fastmail.com>\nJared Wong <jaredlwong at gmail.com>\nJason Spafford <nullprogrammer at gmail.com>\nJay Foad <jay.foad at gmail.com>\nJeffrey Walton <noloader at gmail.com>\nJens Lechtenboerger <jens.lechtenboerger at fsfe.org>\nJussi Kukkonen <jussi.kukkonen at intel.com>\nKenneth J. Miller <ken at miller.ec>\nLei Maohui <leimaohui at cn.fujitsu.com>\nLili Quan <13132239506 at 163.com>\nLucas Fisher <lucas.fisher at gmail.com>\nLudwig Nussel <ludwig.nussel at suse.de>\nLuis G.F <luisgf at gmail.com>\nLuke Dashjr <luke-jr+git at utopios.org>\nMaciej S. Szmigiero <mail at maciej.szmigiero.name>\nMaks Naumov <maksqwe1 at ukr.net>\nMarcin Cie\u015blak <saper at saper.info>\nMarcus Meissner <meissner at suse.de>\nMarga Manterola <marga at google.com>\nMarius Bakke <mbakke at fastmail.com>\nMarti Raudsepp <marti at juffo.org>\nMarvin Scholz <epirat07 at gmail.com>\nMatt Turner <mattst88 at gmail.com>\nMatt Whitlock <matt at whitlock.name>\nMicah Anderson <micah at riseup.net>\nMichael Catanzaro <mcatanzaro at redhat.com>\nNick Alcock <nick.alcock at oracle.com>\nNick Child <nick.child at ibm.com>\nNicolas Dufresne <nicolas.dufresne at collabora.com>\nNils Maier <maierman at web.de>\nNorbert Pocs <npocs at redhat.com>\nOlga <olyasib12 at gmail.com>\nOndrej Moris <omoris at redhat.com>\nPetr Pavlu <petr.pavlu at suse.com>\nPhilippe Proulx <eeppeliteloop at gmail.com>\nPhilippe Widmer <pw at earthwave.ch>\nR. Andrew Bailey <bailey at akamai.com>\nRaj Raman <rajramanca at gmail.com>\nRemi Olivier <remi_8 at hotmail.com>\nRical Jasan <ricaljasan at pacific.net>\nRicardo M. Correia <rcorreia at wizy.org>\nRichard Costa <richard.costa at suse.com>\nRickard Bellgrim <rickard at opendnssec.org>\nRobert Scheck <robert at fedoraproject.org>\nRoberto Newmon <robertonewmon at fake-box.com>\nRoss Nicholson <phunkyfish at gmail.com>\nRowan Thorpe <rowan at rowanthorpe.com>\nSUMIT AGGARWAL <aggarwal.s at samsung.com>\nSadie Powell <sadie at witchery.services>\nSaurav Babu <saurav.babu at samsung.com>\nSebastian Dr\u00f6ge <sebastian at centricular.com>\nSeppo Yli-Olli <seppo.yliolli at gmail.com>\nSimon Arlott <sa.me.uk>\nTatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>\nThomas Klausner <wiz at NetBSD.org>\nTobias Polzer <tobias.polzer at fau.de>\nTomas Hoger <thoger at redhat.com>\nTomas Mraz <tmraz at fedoraproject.org>\nTristan Matthews <le.businessman at gmail.com>\nWerner Koch <wk at gnupg.org>\nYuriy M. Kaminskiy <yumkam at gmail.com>\nihsinme <ihsinme at gmail.com>\nrrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>\nsskaje <sskaje at gmail.com>\n\u0141ukasz Stelmach <stlman at poczta.fm>\n\n\nThe translators list is autogenerated from po file history\n\nAnders Jonsson\nBenno Schulenberg\nCristian Oth\u00f3n Mart\u00ednez Vera\nFelipe Castro\nJakub Bogusz\nJorma Karvonen\nMario Bl\u00e4ttermann\nMilo Casagrande\nMingye Wang (Arthur2e5)\nPetr Pisar\nRafael Fontenelle\nRemus-Gabriel Chelu\nSharuzzaman Ahmat Raslan\nSt\u00e9phane Aulery\nTemuri Doghonadze\nTr\u1ea7n Ng\u1ecdc Qu\u00e2n\nYuri Chornoivan\n\u041c\u0438\u0440\u043e\u0441\u043b\u0430\u0432 \u041d\u0438\u043a\u043e\u043b\u0438\u045b\n8X------------------------------------\n\nLicense: The main library is licensed under GNU Lesser\nGeneral Public License (LGPL) version 2.1+, Gnutls Extra (which is currently\njust the openssl wrapper library), build system, testsuite and commandline\nutilities are licenced under the GNU General Public License version 3+. The\nGuile bindings use the same license as the respective underlying library,\ni.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.\n\nHowever to be able to use and link against libgnutls a program needs to be\navailable under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS\nrequires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed\nLGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also\nis dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier\nversion were LGPLv3+ only.)\n\nCopyright:\n--------------------\n/* -*- c -*-\n * Copyright (C) 2000-2019 Free Software Foundation, Inc.\n *\n * Author: Nikos Mavrogiannopoulos\n *\n * This file is part of GnuTLS.\n *\n * The GnuTLS is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public License\n * as published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>\n *\n */\n--------------------\n/*\n * Copyright (C) 2004-2015 Free Software Foundation, Inc.\n * Copyright (c) 2002 Andrew McDonald <andrew at mcdonald.org.uk>\n *\n * This file is part of GnuTLS-EXTRA.\n *\n * GnuTLS-extra is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * GnuTLS-extra is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n--------------------\n\nThe documentation is distributed under the terms of the GNU Free\nDocumentation License (FDL):\n--------------------\nCopyright (C) 2001-2023 Free Software Foundation, Inc.\nCopyright (C) 2001-2023 Nikos Mavrogiannopoulos\n\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n--------------------\n\n--------------------\nFrom December 2012 onwards FSF is not the sole copyright holder of GnuTLS\nanymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),\nthe headers currently also list these authors/copyright holders::\n* Adam Sampson\n* Alexander von Gernler\n* Andrew McDonald\n* ARPA2 project\n* Attila Molnar\n* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin\n* Brian Wickman\n* Canonical, Ltd.\n* Christian Grothoff\n* Daiki Ueno\n* David Woodhouse\n* Dmitry Eremin-Solenikov\n* Dyalog Ltd.\n* Fiona Klute\n* Frank Morgner\n* Fratni\u0161ek Kren\u017eelok\n* Guillaume Roguez\n* Hugo Beauz\u00e9e-Luyssen\n* IBM Corporation\n* INRIA Paris-Rocquencourt\n* Intel Corporation.\n* Joe Orton\n* Karl Tarbe\n* KU Leuven\n* Lucas Fisher\n* Markus Friedl\n* Michael Zucchi\n* Niels M\u00f6ller\n* Nikos Mavrogiannopoulos\n* Paul Sheer\n* Pierre Ossman\n* Red Hat, Inc.\n* Ruslan N. Marchenko\n* Sean Buckheister\n* Simon Josefsson\n* Stephan Mueller\n* The Pkcs11Interop Project\n* Thomas Klute\n* Tim Kosse\n* Tim R\u00fchsen\n* Tobias Heider\n* Tom Vrancken\n--------------------\n\n\n\nOn Debian GNU/Linux systems, the complete text of the latest version of\nthe GNU Lesser General Public License can be found in\n`/usr/share/common-licenses/LGPL' v3 of the license in\n`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can\nbe found in `/usr/share/common-licenses/GPL' (version 3 in\n/usr/share/common-licenses/GPL-3) The GNU Free Documentation\nLicense is available under /usr/share/common-licenses/GFDL-1.3.\n\n============================================\n\nExcerpt from upstream's README:\n\nLICENSING\n=========\n\nSince GnuTLS version 3.1.10, the core library has been released under\nthe GNU Lesser General Public License (LGPL) version 2.1 or later.\n\nNote, however, that version 6.0.0 and later of the gmplib library used\nby GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and\nas such binaries of this library need to adhere to either LGPLv3+ or\nGPLv2+ license.\n\n\n\n\nThe GNU LGPL applies to the main GnuTLS library, while the\nincluded applications as well as gnutls-openssl\nlibrary are under the GNU GPL version 3. The gnutls library is\nlocated in the lib/ and libdane/ directories, while the applications\nin src/ and, the gnutls-openssl library is at extra/.\n\nFor any copyright year range specified as YYYY-ZZZZ in this package\nnote that the range specifies every single year in that closed interval.\n============================================\n============================================\n\nNon FSF code\n\n============================================\n\nlib/accelerated/x86 contains code by Andy Polyakov <appro at openssl.org>,\ncopyright is not assigned to the FSF. The code is licensed under the\nCRYPTOGAMS license.\n\n--------------------\n# Copyright (c) 2011-2016, Andy Polyakov by <appro at openssl.org>\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# * Redistributions of source code must retain copyright notices,\n# this list of conditions and the following disclaimer.\n#\n# * Redistributions in binary form must reproduce the above\n# copyright notice, this list of conditions and the following\n# disclaimer in the documentation and/or other materials\n# provided with the distribution.\n#\n# * Neither the name of the Andy Polyakov nor the names of its\n# copyright holder and contributors may be used to endorse or\n# promote products derived from this software without specific\n# prior written permission.\n#\n# ALTERNATIVELY, provided that this notice is retained in full, this\n# product may be distributed under the terms of the GNU General Public\n# License (GPL), in which case the provisions of the GPL apply INSTEAD OF\n# those given above.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS\n# \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--------------------\n\n============================================\n\nlib/extras/randomart.*\n\n\nUpstream Authors: Markus Friedl\n Alexander von Gernler\n\nCopyright:\n * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.\n * Copyright (c) 2008 Alexander von Gernler. All rights reserved.\nLicense:\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n============================================\n\nlib/accelerated/x86/elf/aes-ssse3-x86.s\nlib/accelerated/x86/macosx/aes-ssse3-x86.s\n\nUpstream Authors: Mike Hamburg (Stanford University)\n\nCopyright:\n * Mike Hamburg (Stanford University), 2009.\nLicense:\n Public domain.\n\n============================================\n\nlib/system/inet_pton.c\n\nUpstream Authors: Internet Software Consortium\n\nCopyright/License:\n * Copyright (c) 1996,1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\n============================================\n\nlib/extras/hex.*\nAuthor: Rusty Russell <rusty at rustcorp.com.au>\nComment: http://ccodearchive.net/info/str/hex.html\nLicense: CC0 license\n Statement of Purpose\n\n The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\").\n\n Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.\n\n For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.\n\n 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following:\n\n the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;\n moral rights retained by the original author(s) and/or performer(s);\n publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;\n rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and\n other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.\n\n 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.\n\n 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.\n\n 4. Limitations and Disclaimers.\n\n No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.\n Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.\n Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.\n Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.\n\n============================================\n\ndoc/examples/tlsproxy/\nCopyright: Copyright (c) 2016 Wrymouth Innovation Ltd\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n============================================\n\nFiles: tests/pkcs11/pkcs11-mock.*\nCopyright: 2011-2016 The Pkcs11Interop Project\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\nX-Comment: Written originally for the Pkcs11Interop project by:\n Jaroslav IMRICH <jimrich at jimrich.sk>\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n============================================\n\nlib/unistring/*\nAuthor: Bruno Haible <bruno at clisp.org>\nCopyright (C) 2009-2020 Free Software Foundation, Inc.\nComment: Debian package is built against libunistring-dev package.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: fuzz/gnutls_base64_decoder_fuzzer.c\n fuzz/gnutls_base64_encoder_fuzzer.c\n fuzz/gnutls_ocsp_req_parser_fuzzer.c\n fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c\n fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c\nCopyright: 2017 Red Hat, Inc.\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\nfuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c\n fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c\n fuzz/gnutls_reverse_idna_parser_fuzzer.c\nCopyright 2016 Nikos Mavrogiannopoulos\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nfuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c\n fuzz/gnutls_x509_parser_fuzzer.c\nCopyright 2016 Google Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nFiles: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c\nCopyright: 2016 Google Inc.\n 2017 Red Hat, Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n\nFiles: fuzz/main.c\nCopyright: 2017 Tim Ruehsen\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n\nFiles: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h\n fuzz/gnutls_psk_server_fuzzer.c\n fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c\n fuzz/gnutls_srp_server_fuzzer.c\n fuzz/handshake.h\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c\nCopyright: 2017 Nikos Mavrogiannopoulos\n 2019 Tom Vrancken (dev at tomvrancken.nl)\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_x509_crq_parser_fuzzer.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPLv2.1+\n\nFiles: lib/compress.c\nCopyright: 2017-2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/compress.h lib/ext/compress_certificate.c\n lib/ext/compress_certificate.h tests/cipher-padding.c\n tests/ktls.sh tests/pkcs7-verify-double-free.c\nCopyright: 2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/backport/block-internal.h\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\n 2018 Red Hat, Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/init.c\nCopyright: 2010-2012 Free Software Foundation, Inc.\n 2022 Tobias Heider <tobias.heider at canonical.com>\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c\n lib/nettle/gost/magma.c\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h\n lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c\n lib/nettle/int/provable-prime.c\nCopyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h\nCopyright: 2013 2017 Red Hat\n 2008 Free Software Foundation, Inc.\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/rsa-keygen-fips186.c\nCopyright: 2002 Niels M\u00f6ller\n 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h\nCopyright: 2001 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/write-le32.c\nCopyright: 2001, 2011 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/block8.h\nCopyright: 2005, 2014 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/mpn-base256.c\n lib/nettle/int/mpn-base256.h\nCopyright: 2013 Niels M\u00f6ller\n 2013 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost28147.h\nCopyright: 2015 Dmitry Eremin-Solenikov\n 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog-meta.c\nCopyright: 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-gost.h\nCopyright: 2001, 2002 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-streebog.c\nCopyright: 2016 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/nettle-write.h\nCopyright: 2010 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.c\nCopyright: 2013-2015 Dmitry Eremin-Solenikov\nComment: Based on my code in libgcrypt.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.h\nCopyright: 2015 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h\n lib/nettle/gost/magma.h\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa2.h\nCopyright: 2015 Dmity Eremin-Solenikov\n 2013 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa-mask.c\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost-wrap.c\nCopyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nFiles: lib/nettle/gost/gost28147.c\nCopyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense:\n based on Russian standard GOST 28147-89\n * For English description, check RFC 5830.\n * S-Boxes are expanded from the tables defined in RFC4357:\n * https://tools.ietf.org/html/rfc4357\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/rnd-fuzzer.c\nCopyright 2017 Red Hat\n Copyright 1995-2017 Free Software Foundation, Inc.\nLicense\n * This file is part of the GNU C Library.\n * Contributed by Ulrich Drepper <drepper at gnu.ai.mit.edu>, August 1995.\n *\n * This file is part of GnuTLS.\n *\n * Libgcrypt is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * Libgcrypt is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this program; if not, see <http://www.gnu.org/licenses/>.\n\nFiles: lib/name_val_array.h\nLicense: LGPLv3+_or_GPLv2+\nCopyright: 2011-2019 Free Software Foundation, Inc.\n 2019 Red Hat, Inc\n\nLicense: LGPLv3+_or_GPLv2+\n * This program is free software: you can redistribute it and/or\n * modify it under the terms of either:\n *\n * * the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 3 of the License, or (at your\n * option) any later version.\n *\n * or\n *\n * * the GNU General Public License as published by the Free\n * Software Foundation; either version 2 of the License, or (at your\n * option) any later version.\n *\n * or both in parallel, as here.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * General Public License for more details.\n *\n * You should have received copies of the GNU General Public License and\n * the GNU Lesser General Public License along with this program. If\n * not, see http://www.gnu.org/licenses/.\n\nFiles: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk\nCopyright: 2021-2022 Daiki Ueno\nLicense: LGPLv2.1+\n\n\nFiles: tests/no-extensions.c tests/system-override-curves.sh\n tests/system-override-hash.c tests/resume-lifetime.c\n tests/system-override-kx.sh tests/system-override-profiles.sh\n tests/system-override-sig.c tests/system-override-sig-hash.sh\n tests/system-override-tls.sh tests/system-override-versions.sh\n tests/iov.c tests/tls13-without-timeout-func.c\n tests/cert-tests/certtool-crl-decoding.sh\n tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh\n tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh\n tests/ciphersuite-name.c\n tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh\n tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh\n tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh\n tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh\n tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh\n tests/fips-rsa-sizes.c\n tests/ocsp-tests/ocsp-load-chain.sh\n tests/ocsp-tests/ocsp-must-staple-connection.sh\n tests/ocsp-tests/ocsptool.sh\n tests/tls13/compress-cert-cli.c\n tests/tls13/hello_retry_request_resume.c\n tests/client-secrets.h\n tests/sanity-lib.sh\n tests/server-secrets.h\n tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c\n tests/tls13/compress-cert-neg.c\n tests/tls13/psk-ke-modes.c\nLicense: GPLv3+\nCopyright: 2014-2022 Red Hat, Inc\n\nFiles: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh\n tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh\n tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh\n tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh\n tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh\n tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh\n tests/cert-tests/provable-privkey-dsa2048.sh\n tests/cert-tests/provable-privkey-gen-default.sh\n tests/cert-tests/provable-privkey-rsa2048.sh\n tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n\nFiles: tests/openconnect-dtls12.c tests/system-override-invalid.sh\n tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh\nLicense: GPLv3+\nCopyright: 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-ok.c\nLicense: GPLv3+\nCopyright: 2016-2019 Tim Kosse\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-missing.c\nLicense: GPLv3+\nCopyright: 2016 Tim Kosse\n\nFiles: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh\n tests/cert-tests/reject-invalid-time.sh\n tests/cert-tests/tolerate-invalid-time.sh\n tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh\n tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c\n tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh\n tests/dtls/dtls-resume.sh\nLicense: GPLv3+\nCopyright: 2016-2017 Red Hat, Inc.\n\nFiles: tests/kdf-api.c\nLicense: LGPLv2.1+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: lib/fipshmac.c\nLicense: LGPLv2.1+\nCopyright: 2020-2022 Red Hat, Inc.\n\nFiles: tests/missingissuer_aia.c tests/missingissuer.c\nLicense: GPLv3+\nCopyright: 2008-2014 Free Software Foundation, Inc.\n\nFiles: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h\n tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh\n tests/cert-tests/pkcs12-encode.sh\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2016 2017 Red Hat, Inc.\n\nFiles: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c\nLicense: GPLv3+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: tests/status-request-revoked.c tests/cert-tests/certtool.sh\n tests/cert-tests/pkcs7.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n 2018 2020 Red Hat, Inc.\n\nFiles: tests/resume-with-record-size-limit.c\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2016-2019 Red Hat, Inc.\n\nFiles: tests/cipher-alignment.c\nLicense: GPLv3+\nCopyright: 2004-2015 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2015 Red Hat, Inc\n\nFiles: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh\n tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh\nLicense: GPLv3+\nCopyright: 2015 Red Hat, Inc.\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/x509-upnconstraint.c\nLicense: GPLv3+\nCopyright: 2022 Brian Wickman\n\nFiles: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c\nLicense: GPLv3+\nCopyright: 2017-2019 Red Hat, Inc.\n\nFiles: tests/tls13/no-auto-send-ticket.c\nLicense: GPLv3+\nCopyright: 2017-2020 Red Hat, Inc.\n\nFiles: tests/sign-verify-newapi.c\nLicense: GPLv3+\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2017-2019 Red Hat, Inc.\n\nFiles: tests/buffer.c\nLicense: GPLv3+\nCopyright: 2019 Tim R\u00fchsen\n\nFiles: tests/gnutls-cli-rawpk.sh\nLicense: GPLv3+\nCopyright: 2019 Tom Vrancken (dev at tomvrancken.nl)\n\nFiles: tests/system-override-default-priority-string.sh\nLicense: GPLv3+\nCopyright: 2019 Canonical, Ltd.\n\nFiles: tests/x509cert-dntypes.c\nLicense: GPLv3+\nCopyright: 2020 Pierre Ossman for Cendio AB\n\nFiles: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c\nLicense: LGPLv2.1+\nCopyright: 2019 Red Hat, Inc.\n\nFiles: tests/pskself2.c\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2019 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs12-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2016 Red Hat, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs7-list-sign.sh\nCopyright: 2017 Karl Tarbe\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs8-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2004-2006, 2010, 2012 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/id-on-xmppAddr.c\nCopyright: 2021 Steffen Jaeckel\nLicense: GPLv3+\n\nFiles: tests/ocsp-tests/ocsp-tls-connection.sh\nCopyright: 2016 Thomas Klute\nLicense: GPLv3+\n\nFiles: tests/tls-channel-binding.c\nCopyright: 2021 Ruslan N. Marchenko\nLicense: GPLv3+\n\nFiles: lib/accelerated/afalg.c\nCopyright: 2017 Stephan Mueller <smueller at chronox.de>\nLicense: LGPLv2.1+\n\n\nFiles: lib/inih/*\nCopyright: 2009-2019, Ben Hoyt\nLicense: BSD-3-Clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Ben Hoyt nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nComment: https://github.com/benhoyt/inih\n~\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "LGPLv3+_or_GPLv2+",
+ "text": {
+ "content": "This package was debianized by Ivo Timmermans <ivo at debian.org> on\nFri, 3 Aug 2001 10:00:42 +0200.\nIt was later taken over by Matthias Urlichs <smurf at debian.org> and is now\nmaintained by Andreas Metzler <ametzler at debian.org> Eric Dorland\n<eric at debian.org>, James Westby <jw+debian at jameswestby.net>\n\n\nIt was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/\n\nUpstream Authors (from AUTHORS file):\n8X------------------------------------\nThe authors list is autogenerated from the git history; sorted by number of commits\n\nNikos Mavrogiannopoulos <nmav at gnutls.org>\nSimon Josefsson <jas at josefsson.org>\nDaiki Ueno <ueno at gnu.org>\nDmitry Baryshkov <dbaryshkov at gmail.com>\nTim R\u00fchsen <tim.ruehsen at gmx.de>\nLudovic Court\u00e8s <ludo at gnu.org>\nTimo Schulz <twoaday at gnutls.org>\nJonathan Bastien-Filiatrault <joe at x2a.org>\nAndreas Metzler <ametzler at debian.org>\nAlon Bar-Lev <alon.barlev at gmail.com>\nAlexander Sosedkin <asosedkin at redhat.com>\nDaniel Kahn Gillmor <dkg at fifthhorseman.net>\nTom Vrancken <dev at tomvrancken.nl>\nZoltan Fridrich <zfridric at redhat.com>\nMartin Storsjo <martin at martin.st>\nTim Kosse <tim.kosse at filezilla-project.org>\nSimo Sorce <simo at redhat.com>\nFabian Keil <fk at fabiankeil.de>\nFabio Fiorina <fiorinaf at gnutls.org>\nStef Walter <stefw at redhat.com>\nAnderson Toshiyuki Sasaki <ansasaki at redhat.com>\nArmin Burgmeier <armin at arbur.net>\nFranti\u0161ek Kren\u017eelok <krenzelok.frantisek at gmail.com>\nAndrew McDonald <admcd at gnutls.org>\nFiona Klute <fiona.klute at gmx.de>\nAlex Gaynor <alex.gaynor at gmail.com>\nAnder Juaristi <a at juaristi.eus>\nMartin Ukrop <mukrop at redhat.com>\nJaak Ristioja <jaak.ristioja at cyber.ee>\nAttila Molnar <attilamolnar at hush.com>\nHugo Beauz\u00e9e-Luyssen <hugo at beauzee.fr>\nStefan Berger <stefanb at linux.ibm.com>\nSteve Lhomme <robux4 at ycbcr.xyz>\nJakub Jelen <jjelen at redhat.com>\nMartin Sucha <anty.sk+git at gmail.com>\nDavid Woodhouse <dwmw2 at infradead.org>\nJan Vcelak <jan.vcelak at nic.cz>\nKevin Cernekee <cernekee at gmail.com>\nNikolay Sivov <nsivov at codeweavers.com>\nSahana Prasad <sahana at redhat.com>\nMichael Catanzaro <mcatanzaro at gnome.org>\nDaniel Lenski <dlenski at gmail.com>\nJonasZhou <JonasZhou at zhaoxin.com>\nStefan S\u00f8rensen <stefan.sorensen at spectralink.com>\nTobias Heider <tobias.heider at canonical.com>\nAdam Sampson <ats at offog.org>\nAlfredo Pironti <alfredo at pironti.eu>\nBrad Hards <bradh at frogmouth.net>\nDimitri John Ledkov <xnox at ubuntu.com>\nHubert Kario <hkario at redhat.com>\nMichael Weiser <michael.weiser at gmx.de>\nPatrick Pelletier <code at funwithsoftware.org>\nRolf Eike Beer <eike at sf-mail.de>\nRuslan N. Marchenko <me at ruff.mobi>\nSjoerd Simons <sjoerd.simons at collabora.co.uk>\nStefan B\u00fchler <stbuehler at web.de>\nThomas Klute <thomas2.klute at uni-dortmund.de>\nWolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>\nChristian Grothoff <christian at grothoff.org>\nDaniel P. Berrange <berrange at redhat.com>\nEvgeny Grin <k2k at narod.ru>\nGustavo Zacarias <gustavo at zacarias.com.ar>\nJames Bottomley <James.Bottomley at HansenPartnership.com>\nJi\u0159\u00ed Klime\u0161 <jklimes at redhat.com>\nKarsten Ohme <k_o_ at users.sourceforge.net>\nKurt Roeckx <kurt at roeckx.be>\nPeter Wu <peter at lekensteyn.nl>\nStanislav Zidek <szidek at redhat.com>\nStephan Mueller <smueller at chronox.de>\nThierry Quemerais <tquemerais at awox.com>\nTom Carroll <incentivedesign at gmail.com>\nVitezslav Cizek <vcizek at suse.com>\nAlessandro Ghedini <alessandro at ghedini.me>\nAlex Monk <krenair at gmail.com>\nBenjamin Herrenschmidt <benh at kernel.crashing.org>\nBernhard M. Wiedemann <bwiedemann at suse.de>\nCraig Gallek <cgallek at gmail.com>\nDavid Caldwell <david at porkrind.org>\nDiego Elio Petten\u00f2 <flameeyes at flameeyes.eu>\nElta Koepp <alexi_2019 at protonmail.com>\nFabrice Fontaine <fontaine.fabrice at gmail.com>\nGiuseppe Scrivano <gscrivano at gnu.org>\nIlya Tumaykin <itumaykin at gmail.com>\nKarl Tarbe <karl.tarbe at cyber.ee>\nKe Zhao <kzhao at redhat.com>\nLeonardo Bras <leobras.c at gmail.com>\nMark Brand <mabrand at mabrand.nl>\nMatthias-Christian Ott <ott at mirix.org>\nMaya Rashish <coypu at sdf.org>\nMichael Catanzaro <mcatanzaro at igalia.com>\nMicha\u0142 G\u00f3rny <mgorny at gentoo.org>\nMiroslav Lichvar <mlichvar at redhat.com>\nPedro Monreal <pmgdeb at gmail.com>\nPedro Monreal <pmonrealgonzalez at suse.de>\nPetr P\u00edsa\u0159 <petr.pisar at atlas.cz>\nPierre Ossman <ossman at cendio.se>\nRoman Bogorodskiy <bogorodskiy at gmail.com>\nSam James <sam at gentoo.org>\nSimon South <simon at simonsouth.net>\nSteffen Jaeckel <jaeckel-floss at eyet-services.de>\nSteve Dispensa <dispensa at phonefactor.com>\nnia <nia at NetBSD.org>\nraspa0 <raspa0 at protonmail.com>\nAlban Crequy <alban.crequy at collabora.co.uk>\nAlbrecht Dre\u00df <albrecht.dress at arcor.de>\nAleksei Nikiforov <darktemplar at basealt.ru>\nAlexander Kanavin <alex.kanavin at gmail.com>\nAlexandre Bique <bique.alexandre at gmail.com>\nAndreas Schneider <asn at samba.org>\nAndreas Schwab <schwab at suse.de>\nAsad Mehmood <asad78611 at googlemail.com>\nAvinash Sonawane <rootkea at gmail.com>\nBas van Schaik <gitlab.com at s.traiectum.net>\nBjoern Jacke <bjacke at samba.org>\nBj\u00f6rn Jacke <bjacke at samba.org>\nBj\u00f8rn Christensen <bhc at insight.dk>\nBrad Smith <brad at comstyle.com>\nBrian Wickman <bwickman97 at outlook.com>\nCarolin Latze <latze at angry-red-pla.net>\nChen Hongzhi <hongzhi.chen at me.com>\nChris Barry <chris at barry.im>\nColin Walters <walters at verbum.org>\nDan Fandrich <dan at coneharvesters.com>\nDaniel Schaefer <git at danielschaefer.me>\nDavid Walker <david.walker at vcatechnology.com>\nDavid Weber <dave at veryflatcat.com>\nDimitris Apostolou <dimitris.apostolou at icloud.com>\nDmitriy Tsvettsikh <dmitrycvet at gmail.com>\nDosenpfand <m at sad.bz>\nDoug Nazar <nazard at nazar.ca>\nEdward Stangler <estangler at bradmark.com>\nElias Pipping <pipping at exherbo.org>\nElta Koepp <elta_koepp at gmail.com>\nFrank Morgner <morgner at informatik.hu-berlin.de>\nGregor Jasny <gjasny at googlemail.com>\nG\u00fcnther Deschner <gd at samba.org>\nHani Benhabiles <kroosec at gmail.com>\nHannes Reinecke <hare at suse.de>\nHans Leidekker <hans at codeweavers.com>\nIlya V. Matveychikov <i.matveychikov at securitycode.ru>\nJan Palus <jpalus at fastmail.com>\nJared Wong <jaredlwong at gmail.com>\nJason Spafford <nullprogrammer at gmail.com>\nJay Foad <jay.foad at gmail.com>\nJeffrey Walton <noloader at gmail.com>\nJens Lechtenboerger <jens.lechtenboerger at fsfe.org>\nJussi Kukkonen <jussi.kukkonen at intel.com>\nKenneth J. Miller <ken at miller.ec>\nLei Maohui <leimaohui at cn.fujitsu.com>\nLili Quan <13132239506 at 163.com>\nLucas Fisher <lucas.fisher at gmail.com>\nLudwig Nussel <ludwig.nussel at suse.de>\nLuis G.F <luisgf at gmail.com>\nLuke Dashjr <luke-jr+git at utopios.org>\nMaciej S. Szmigiero <mail at maciej.szmigiero.name>\nMaks Naumov <maksqwe1 at ukr.net>\nMarcin Cie\u015blak <saper at saper.info>\nMarcus Meissner <meissner at suse.de>\nMarga Manterola <marga at google.com>\nMarius Bakke <mbakke at fastmail.com>\nMarti Raudsepp <marti at juffo.org>\nMarvin Scholz <epirat07 at gmail.com>\nMatt Turner <mattst88 at gmail.com>\nMatt Whitlock <matt at whitlock.name>\nMicah Anderson <micah at riseup.net>\nMichael Catanzaro <mcatanzaro at redhat.com>\nNick Alcock <nick.alcock at oracle.com>\nNick Child <nick.child at ibm.com>\nNicolas Dufresne <nicolas.dufresne at collabora.com>\nNils Maier <maierman at web.de>\nNorbert Pocs <npocs at redhat.com>\nOlga <olyasib12 at gmail.com>\nOndrej Moris <omoris at redhat.com>\nPetr Pavlu <petr.pavlu at suse.com>\nPhilippe Proulx <eeppeliteloop at gmail.com>\nPhilippe Widmer <pw at earthwave.ch>\nR. Andrew Bailey <bailey at akamai.com>\nRaj Raman <rajramanca at gmail.com>\nRemi Olivier <remi_8 at hotmail.com>\nRical Jasan <ricaljasan at pacific.net>\nRicardo M. Correia <rcorreia at wizy.org>\nRichard Costa <richard.costa at suse.com>\nRickard Bellgrim <rickard at opendnssec.org>\nRobert Scheck <robert at fedoraproject.org>\nRoberto Newmon <robertonewmon at fake-box.com>\nRoss Nicholson <phunkyfish at gmail.com>\nRowan Thorpe <rowan at rowanthorpe.com>\nSUMIT AGGARWAL <aggarwal.s at samsung.com>\nSadie Powell <sadie at witchery.services>\nSaurav Babu <saurav.babu at samsung.com>\nSebastian Dr\u00f6ge <sebastian at centricular.com>\nSeppo Yli-Olli <seppo.yliolli at gmail.com>\nSimon Arlott <sa.me.uk>\nTatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>\nThomas Klausner <wiz at NetBSD.org>\nTobias Polzer <tobias.polzer at fau.de>\nTomas Hoger <thoger at redhat.com>\nTomas Mraz <tmraz at fedoraproject.org>\nTristan Matthews <le.businessman at gmail.com>\nWerner Koch <wk at gnupg.org>\nYuriy M. Kaminskiy <yumkam at gmail.com>\nihsinme <ihsinme at gmail.com>\nrrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>\nsskaje <sskaje at gmail.com>\n\u0141ukasz Stelmach <stlman at poczta.fm>\n\n\nThe translators list is autogenerated from po file history\n\nAnders Jonsson\nBenno Schulenberg\nCristian Oth\u00f3n Mart\u00ednez Vera\nFelipe Castro\nJakub Bogusz\nJorma Karvonen\nMario Bl\u00e4ttermann\nMilo Casagrande\nMingye Wang (Arthur2e5)\nPetr Pisar\nRafael Fontenelle\nRemus-Gabriel Chelu\nSharuzzaman Ahmat Raslan\nSt\u00e9phane Aulery\nTemuri Doghonadze\nTr\u1ea7n Ng\u1ecdc Qu\u00e2n\nYuri Chornoivan\n\u041c\u0438\u0440\u043e\u0441\u043b\u0430\u0432 \u041d\u0438\u043a\u043e\u043b\u0438\u045b\n8X------------------------------------\n\nLicense: The main library is licensed under GNU Lesser\nGeneral Public License (LGPL) version 2.1+, Gnutls Extra (which is currently\njust the openssl wrapper library), build system, testsuite and commandline\nutilities are licenced under the GNU General Public License version 3+. The\nGuile bindings use the same license as the respective underlying library,\ni.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.\n\nHowever to be able to use and link against libgnutls a program needs to be\navailable under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS\nrequires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed\nLGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also\nis dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier\nversion were LGPLv3+ only.)\n\nCopyright:\n--------------------\n/* -*- c -*-\n * Copyright (C) 2000-2019 Free Software Foundation, Inc.\n *\n * Author: Nikos Mavrogiannopoulos\n *\n * This file is part of GnuTLS.\n *\n * The GnuTLS is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public License\n * as published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>\n *\n */\n--------------------\n/*\n * Copyright (C) 2004-2015 Free Software Foundation, Inc.\n * Copyright (c) 2002 Andrew McDonald <andrew at mcdonald.org.uk>\n *\n * This file is part of GnuTLS-EXTRA.\n *\n * GnuTLS-extra is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * GnuTLS-extra is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n--------------------\n\nThe documentation is distributed under the terms of the GNU Free\nDocumentation License (FDL):\n--------------------\nCopyright (C) 2001-2023 Free Software Foundation, Inc.\nCopyright (C) 2001-2023 Nikos Mavrogiannopoulos\n\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n--------------------\n\n--------------------\nFrom December 2012 onwards FSF is not the sole copyright holder of GnuTLS\nanymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),\nthe headers currently also list these authors/copyright holders::\n* Adam Sampson\n* Alexander von Gernler\n* Andrew McDonald\n* ARPA2 project\n* Attila Molnar\n* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin\n* Brian Wickman\n* Canonical, Ltd.\n* Christian Grothoff\n* Daiki Ueno\n* David Woodhouse\n* Dmitry Eremin-Solenikov\n* Dyalog Ltd.\n* Fiona Klute\n* Frank Morgner\n* Fratni\u0161ek Kren\u017eelok\n* Guillaume Roguez\n* Hugo Beauz\u00e9e-Luyssen\n* IBM Corporation\n* INRIA Paris-Rocquencourt\n* Intel Corporation.\n* Joe Orton\n* Karl Tarbe\n* KU Leuven\n* Lucas Fisher\n* Markus Friedl\n* Michael Zucchi\n* Niels M\u00f6ller\n* Nikos Mavrogiannopoulos\n* Paul Sheer\n* Pierre Ossman\n* Red Hat, Inc.\n* Ruslan N. Marchenko\n* Sean Buckheister\n* Simon Josefsson\n* Stephan Mueller\n* The Pkcs11Interop Project\n* Thomas Klute\n* Tim Kosse\n* Tim R\u00fchsen\n* Tobias Heider\n* Tom Vrancken\n--------------------\n\n\n\nOn Debian GNU/Linux systems, the complete text of the latest version of\nthe GNU Lesser General Public License can be found in\n`/usr/share/common-licenses/LGPL' v3 of the license in\n`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can\nbe found in `/usr/share/common-licenses/GPL' (version 3 in\n/usr/share/common-licenses/GPL-3) The GNU Free Documentation\nLicense is available under /usr/share/common-licenses/GFDL-1.3.\n\n============================================\n\nExcerpt from upstream's README:\n\nLICENSING\n=========\n\nSince GnuTLS version 3.1.10, the core library has been released under\nthe GNU Lesser General Public License (LGPL) version 2.1 or later.\n\nNote, however, that version 6.0.0 and later of the gmplib library used\nby GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and\nas such binaries of this library need to adhere to either LGPLv3+ or\nGPLv2+ license.\n\n\n\n\nThe GNU LGPL applies to the main GnuTLS library, while the\nincluded applications as well as gnutls-openssl\nlibrary are under the GNU GPL version 3. The gnutls library is\nlocated in the lib/ and libdane/ directories, while the applications\nin src/ and, the gnutls-openssl library is at extra/.\n\nFor any copyright year range specified as YYYY-ZZZZ in this package\nnote that the range specifies every single year in that closed interval.\n============================================\n============================================\n\nNon FSF code\n\n============================================\n\nlib/accelerated/x86 contains code by Andy Polyakov <appro at openssl.org>,\ncopyright is not assigned to the FSF. The code is licensed under the\nCRYPTOGAMS license.\n\n--------------------\n# Copyright (c) 2011-2016, Andy Polyakov by <appro at openssl.org>\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# * Redistributions of source code must retain copyright notices,\n# this list of conditions and the following disclaimer.\n#\n# * Redistributions in binary form must reproduce the above\n# copyright notice, this list of conditions and the following\n# disclaimer in the documentation and/or other materials\n# provided with the distribution.\n#\n# * Neither the name of the Andy Polyakov nor the names of its\n# copyright holder and contributors may be used to endorse or\n# promote products derived from this software without specific\n# prior written permission.\n#\n# ALTERNATIVELY, provided that this notice is retained in full, this\n# product may be distributed under the terms of the GNU General Public\n# License (GPL), in which case the provisions of the GPL apply INSTEAD OF\n# those given above.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS\n# \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--------------------\n\n============================================\n\nlib/extras/randomart.*\n\n\nUpstream Authors: Markus Friedl\n Alexander von Gernler\n\nCopyright:\n * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.\n * Copyright (c) 2008 Alexander von Gernler. All rights reserved.\nLicense:\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n============================================\n\nlib/accelerated/x86/elf/aes-ssse3-x86.s\nlib/accelerated/x86/macosx/aes-ssse3-x86.s\n\nUpstream Authors: Mike Hamburg (Stanford University)\n\nCopyright:\n * Mike Hamburg (Stanford University), 2009.\nLicense:\n Public domain.\n\n============================================\n\nlib/system/inet_pton.c\n\nUpstream Authors: Internet Software Consortium\n\nCopyright/License:\n * Copyright (c) 1996,1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\n============================================\n\nlib/extras/hex.*\nAuthor: Rusty Russell <rusty at rustcorp.com.au>\nComment: http://ccodearchive.net/info/str/hex.html\nLicense: CC0 license\n Statement of Purpose\n\n The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\").\n\n Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.\n\n For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.\n\n 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following:\n\n the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;\n moral rights retained by the original author(s) and/or performer(s);\n publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;\n rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and\n other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.\n\n 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.\n\n 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.\n\n 4. Limitations and Disclaimers.\n\n No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.\n Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.\n Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.\n Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.\n\n============================================\n\ndoc/examples/tlsproxy/\nCopyright: Copyright (c) 2016 Wrymouth Innovation Ltd\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n============================================\n\nFiles: tests/pkcs11/pkcs11-mock.*\nCopyright: 2011-2016 The Pkcs11Interop Project\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\nX-Comment: Written originally for the Pkcs11Interop project by:\n Jaroslav IMRICH <jimrich at jimrich.sk>\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n============================================\n\nlib/unistring/*\nAuthor: Bruno Haible <bruno at clisp.org>\nCopyright (C) 2009-2020 Free Software Foundation, Inc.\nComment: Debian package is built against libunistring-dev package.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: fuzz/gnutls_base64_decoder_fuzzer.c\n fuzz/gnutls_base64_encoder_fuzzer.c\n fuzz/gnutls_ocsp_req_parser_fuzzer.c\n fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c\n fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c\nCopyright: 2017 Red Hat, Inc.\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\nfuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c\n fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c\n fuzz/gnutls_reverse_idna_parser_fuzzer.c\nCopyright 2016 Nikos Mavrogiannopoulos\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nfuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c\n fuzz/gnutls_x509_parser_fuzzer.c\nCopyright 2016 Google Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nFiles: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c\nCopyright: 2016 Google Inc.\n 2017 Red Hat, Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n\nFiles: fuzz/main.c\nCopyright: 2017 Tim Ruehsen\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n\nFiles: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h\n fuzz/gnutls_psk_server_fuzzer.c\n fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c\n fuzz/gnutls_srp_server_fuzzer.c\n fuzz/handshake.h\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c\nCopyright: 2017 Nikos Mavrogiannopoulos\n 2019 Tom Vrancken (dev at tomvrancken.nl)\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_x509_crq_parser_fuzzer.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPLv2.1+\n\nFiles: lib/compress.c\nCopyright: 2017-2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/compress.h lib/ext/compress_certificate.c\n lib/ext/compress_certificate.h tests/cipher-padding.c\n tests/ktls.sh tests/pkcs7-verify-double-free.c\nCopyright: 2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/backport/block-internal.h\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\n 2018 Red Hat, Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/init.c\nCopyright: 2010-2012 Free Software Foundation, Inc.\n 2022 Tobias Heider <tobias.heider at canonical.com>\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c\n lib/nettle/gost/magma.c\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h\n lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c\n lib/nettle/int/provable-prime.c\nCopyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h\nCopyright: 2013 2017 Red Hat\n 2008 Free Software Foundation, Inc.\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/rsa-keygen-fips186.c\nCopyright: 2002 Niels M\u00f6ller\n 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h\nCopyright: 2001 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/write-le32.c\nCopyright: 2001, 2011 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/block8.h\nCopyright: 2005, 2014 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/mpn-base256.c\n lib/nettle/int/mpn-base256.h\nCopyright: 2013 Niels M\u00f6ller\n 2013 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost28147.h\nCopyright: 2015 Dmitry Eremin-Solenikov\n 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog-meta.c\nCopyright: 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-gost.h\nCopyright: 2001, 2002 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-streebog.c\nCopyright: 2016 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/nettle-write.h\nCopyright: 2010 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.c\nCopyright: 2013-2015 Dmitry Eremin-Solenikov\nComment: Based on my code in libgcrypt.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.h\nCopyright: 2015 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h\n lib/nettle/gost/magma.h\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa2.h\nCopyright: 2015 Dmity Eremin-Solenikov\n 2013 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa-mask.c\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost-wrap.c\nCopyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nFiles: lib/nettle/gost/gost28147.c\nCopyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense:\n based on Russian standard GOST 28147-89\n * For English description, check RFC 5830.\n * S-Boxes are expanded from the tables defined in RFC4357:\n * https://tools.ietf.org/html/rfc4357\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/rnd-fuzzer.c\nCopyright 2017 Red Hat\n Copyright 1995-2017 Free Software Foundation, Inc.\nLicense\n * This file is part of the GNU C Library.\n * Contributed by Ulrich Drepper <drepper at gnu.ai.mit.edu>, August 1995.\n *\n * This file is part of GnuTLS.\n *\n * Libgcrypt is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * Libgcrypt is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this program; if not, see <http://www.gnu.org/licenses/>.\n\nFiles: lib/name_val_array.h\nLicense: LGPLv3+_or_GPLv2+\nCopyright: 2011-2019 Free Software Foundation, Inc.\n 2019 Red Hat, Inc\n\nLicense: LGPLv3+_or_GPLv2+\n * This program is free software: you can redistribute it and/or\n * modify it under the terms of either:\n *\n * * the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 3 of the License, or (at your\n * option) any later version.\n *\n * or\n *\n * * the GNU General Public License as published by the Free\n * Software Foundation; either version 2 of the License, or (at your\n * option) any later version.\n *\n * or both in parallel, as here.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * General Public License for more details.\n *\n * You should have received copies of the GNU General Public License and\n * the GNU Lesser General Public License along with this program. If\n * not, see http://www.gnu.org/licenses/.\n\nFiles: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk\nCopyright: 2021-2022 Daiki Ueno\nLicense: LGPLv2.1+\n\n\nFiles: tests/no-extensions.c tests/system-override-curves.sh\n tests/system-override-hash.c tests/resume-lifetime.c\n tests/system-override-kx.sh tests/system-override-profiles.sh\n tests/system-override-sig.c tests/system-override-sig-hash.sh\n tests/system-override-tls.sh tests/system-override-versions.sh\n tests/iov.c tests/tls13-without-timeout-func.c\n tests/cert-tests/certtool-crl-decoding.sh\n tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh\n tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh\n tests/ciphersuite-name.c\n tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh\n tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh\n tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh\n tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh\n tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh\n tests/fips-rsa-sizes.c\n tests/ocsp-tests/ocsp-load-chain.sh\n tests/ocsp-tests/ocsp-must-staple-connection.sh\n tests/ocsp-tests/ocsptool.sh\n tests/tls13/compress-cert-cli.c\n tests/tls13/hello_retry_request_resume.c\n tests/client-secrets.h\n tests/sanity-lib.sh\n tests/server-secrets.h\n tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c\n tests/tls13/compress-cert-neg.c\n tests/tls13/psk-ke-modes.c\nLicense: GPLv3+\nCopyright: 2014-2022 Red Hat, Inc\n\nFiles: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh\n tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh\n tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh\n tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh\n tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh\n tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh\n tests/cert-tests/provable-privkey-dsa2048.sh\n tests/cert-tests/provable-privkey-gen-default.sh\n tests/cert-tests/provable-privkey-rsa2048.sh\n tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n\nFiles: tests/openconnect-dtls12.c tests/system-override-invalid.sh\n tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh\nLicense: GPLv3+\nCopyright: 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-ok.c\nLicense: GPLv3+\nCopyright: 2016-2019 Tim Kosse\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-missing.c\nLicense: GPLv3+\nCopyright: 2016 Tim Kosse\n\nFiles: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh\n tests/cert-tests/reject-invalid-time.sh\n tests/cert-tests/tolerate-invalid-time.sh\n tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh\n tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c\n tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh\n tests/dtls/dtls-resume.sh\nLicense: GPLv3+\nCopyright: 2016-2017 Red Hat, Inc.\n\nFiles: tests/kdf-api.c\nLicense: LGPLv2.1+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: lib/fipshmac.c\nLicense: LGPLv2.1+\nCopyright: 2020-2022 Red Hat, Inc.\n\nFiles: tests/missingissuer_aia.c tests/missingissuer.c\nLicense: GPLv3+\nCopyright: 2008-2014 Free Software Foundation, Inc.\n\nFiles: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h\n tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh\n tests/cert-tests/pkcs12-encode.sh\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2016 2017 Red Hat, Inc.\n\nFiles: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c\nLicense: GPLv3+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: tests/status-request-revoked.c tests/cert-tests/certtool.sh\n tests/cert-tests/pkcs7.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n 2018 2020 Red Hat, Inc.\n\nFiles: tests/resume-with-record-size-limit.c\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2016-2019 Red Hat, Inc.\n\nFiles: tests/cipher-alignment.c\nLicense: GPLv3+\nCopyright: 2004-2015 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2015 Red Hat, Inc\n\nFiles: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh\n tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh\nLicense: GPLv3+\nCopyright: 2015 Red Hat, Inc.\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/x509-upnconstraint.c\nLicense: GPLv3+\nCopyright: 2022 Brian Wickman\n\nFiles: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c\nLicense: GPLv3+\nCopyright: 2017-2019 Red Hat, Inc.\n\nFiles: tests/tls13/no-auto-send-ticket.c\nLicense: GPLv3+\nCopyright: 2017-2020 Red Hat, Inc.\n\nFiles: tests/sign-verify-newapi.c\nLicense: GPLv3+\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2017-2019 Red Hat, Inc.\n\nFiles: tests/buffer.c\nLicense: GPLv3+\nCopyright: 2019 Tim R\u00fchsen\n\nFiles: tests/gnutls-cli-rawpk.sh\nLicense: GPLv3+\nCopyright: 2019 Tom Vrancken (dev at tomvrancken.nl)\n\nFiles: tests/system-override-default-priority-string.sh\nLicense: GPLv3+\nCopyright: 2019 Canonical, Ltd.\n\nFiles: tests/x509cert-dntypes.c\nLicense: GPLv3+\nCopyright: 2020 Pierre Ossman for Cendio AB\n\nFiles: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c\nLicense: LGPLv2.1+\nCopyright: 2019 Red Hat, Inc.\n\nFiles: tests/pskself2.c\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2019 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs12-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2016 Red Hat, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs7-list-sign.sh\nCopyright: 2017 Karl Tarbe\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs8-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2004-2006, 2010, 2012 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/id-on-xmppAddr.c\nCopyright: 2021 Steffen Jaeckel\nLicense: GPLv3+\n\nFiles: tests/ocsp-tests/ocsp-tls-connection.sh\nCopyright: 2016 Thomas Klute\nLicense: GPLv3+\n\nFiles: tests/tls-channel-binding.c\nCopyright: 2021 Ruslan N. Marchenko\nLicense: GPLv3+\n\nFiles: lib/accelerated/afalg.c\nCopyright: 2017 Stephan Mueller <smueller at chronox.de>\nLicense: LGPLv2.1+\n\n\nFiles: lib/inih/*\nCopyright: 2009-2019, Ben Hoyt\nLicense: BSD-3-Clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Ben Hoyt nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nComment: https://github.com/benhoyt/inih\n~\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgnutls30 at 3.7.9-2+deb12u3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1122,6 +3151,34 @@
"content": "89944ee11d7370ce6ef46fc52f094c4a6512eff8943ec4c6ebefeae6360ceada"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.1-or-later OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "g10-permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgpg-error0 at 1.46-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1138,6 +3195,34 @@
"content": "6631304ce4b5b9ba0af3fdebf088a734aed2d28ffad2a03ba79e4fcb2e226dd6"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.1-or-later OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "g10-permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgssapi-krb5-2 at 1.20.1-2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1154,6 +3239,59 @@
"content": "ed8185c28b2cb519744a5a462dcd720d3b332c9b88a1d0002eac06dc8550cb94"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Nettle\nUpstream-Contact: Niels M\u00f6ller <nisse at lysator.liu.se>\nSource: http://www.lysator.liu.se/~nisse/nettle/\nCopyright: \u00a9 2001-2020 Niels M\u00f6ller\n Some parts are Copyright \u00a9 the Free Software Foundation and various\n people. See below and source code comments for details.\nLicense: LGPL-3+ or GPL-2+\nComment:\n Nettle is dual licenced under the GNU General Public License version\n 2 or later, and the GNU Lesser General Public License version 3 or\n later. When using Nettle, you must comply fully with all conditions\n of at least one of these licenses. A few of the individual files are\n licensed under more permissive terms, or in the public domain. To\n find the current status of particular files, you have to read the\n copyright notices at the top of the files.\n .\n 8X--------- AUTHORS file -----------------------------------------\n Authors of GNU Nettle\n .\n The oldest code in Nettle was copied into precursors of the Nettle\n library from other public domain or LGPLv2 sources.\n .\n Steve Reid\t\tOriginal CAST128 implementation\n Dana L. How\t\tOriginal DES implementation,\n Colin Plumb\t\tOriginal MD5 implementation\n Peter Gutmann\t\tOriginal SHA1 implementation\n Andrew Kuchling\t\tOriginal MD2 implementation\n .\n Free Software Foundation\n \t\t\tHolds copyrights on code ported from\n \t\t\tlibgcrypt, written by Werner Koch and others.\n .\n J.H.M. Dassen\t\tOriginal port of blowfish to GNU lsh, later\n \t\t\tsplit off into Nettle. (This blowfish\n \t\t\timplementation was replaced later).\n \t\t\tTwofish tests.\n .\n Ruud de Rooij\t\tTwofish implementation for GNU lsh, later split off into Nettle.\n .\n Rafael Sevilla\t\tAES C and x86 implementation, original port of\n \t\t\tSerpent, for GNU lsh, later split off into Nettle.\n .\n Authors of Nettle (in roughly chronological order of initial contribution)\n .\n Niels M\u00f6ller\t\tMain author.\n .\n Dan Egnor\t\tBase64 conversion.\n .\n Andreas Sigfridsson\tPort of MD2, from Andrew Kuchling's python\n \t\t\tcryptography toolkit.\n .\n Marcus Comstedt\t\tImplemented MD4.\n .\n D. J. Bernstein\t\tSalsa20 public domain reference implementation.\n .\n Simon Josefsson\t\tPort of Arctwo, from GnuTLS and libgcrypt. New\n \t\t\tports of LGPL Serpent and Blowfish code, from\n \t\t\tlibgcrypt. Port of Salsa20, based on djb's\n \t\t\treference. Implementation of PBKDF2 (RFC\n \t\t\t2898).\n .\n Henrik Grubbstr\u00f6m\tAES assembly for Sparc64.\n .\n Magnus Holmgren\t\tConversion of DSA keys from DER format to SEXP\n \t\t\tformat.\n .\n Daniel Kahn Gillmor\tAdded the lists for nettle_get_ciphers,\n \t\t\tnettle_get_hashes and nettle_get_armors. Test\n \t\t\tvectors for hashes and hmac.\n .\n Nippon Telegraph and Telephone Corporation\n \t\t\tLGPL:ed reference implementation of the\n \t\t\tCamellia cipher.\n .\n Andrew M. (floodyberry)\n \t\t\tThe poly1305 code nettle's C implementation is\n \t\t\tderived from.\n .\n Aleksey Kravchenko\tThe gosthash94 implementation in rhash library.\n .\n Stefan Metzmacher, Jeremy Allison, Michael Adam\n \t\t\tContributed to the CMAC code, which was added\n \t\t\tto Nettle by Nikos Mavroyanopoulos.\n .\n Nikos Mavroyanopoulos\tGCM implementation, RSA blinding code,\n \t\t\tinterface for general rsa-pkcs1 signatures.\n \t\t\tPort of gosthash94 implementation from rhash. Port of\n \t\t\tpoly1305. Salsa20r12 variant. HKDF (RFC 5869)\n \t\t\timplementation. CMAC and SIV-CMAV\n \t\t\timplementation. CTR and GCM optimizations.\n \t\t\tImplementation of versioned symbols. Setup of\n \t\t\t.gitlab-ci.yml. Large number of smaller fixes.\n .\n Andres Mejia\t\tPorted Ripemd160 from libgcrypt.\n .\n Martin Storsj\u00f6\t\tImplemented m4 macrology to make x86_64\n \t\t\tassembly files work with the windows ABI.\n \t\t\tSeveral other portability improvements.\n .\n Jeronimo Pellegrini\tDocumentation for base16 and base64 functions.\n .\n Tim Ruehsen\t\tSeveral smaller cleanups and bugfixes.\n .\n Fredrik Thulin\t\tTest vectors for pbkdf2-hmac-sha512.\n .\n Joachim Str\u00f6mbergson\tChacha implementation. Support for sha512_224\n \t\t\tand sha512_256.\n .\n Owen Kirby\t\tImplementation of CCM mode.\n .\n Amos Jeffries\t\tImplementation of base64url encoding.\n .\n Daiki Ueno\t\tImplementation of RSA-PSS signatures,\n \t\t\tcurve448, shake256, ed448-shake256 signatures,\n \t\t\tchacha functions for 32-bit nonce, struct\n \t\t\tnettle_mac interface.\n .\n Dmitry Baryshkov\tCFB and CFB8 modes, CMAC64. gosthash94cp and\n \t\t\tStreebog hash functions, GOST DSA signatures\n \t\t\tand curves GC256B and GC512A. Various bug\n \t\t\tfixes and cleanups.\n .\n Simo Sorce\t\tSide-channel silent RSA functions. XTS\n \t\t\timplementation.\n .\n H.J. Lu\t\t\tAssembly annotations for Intel \"Control-flow\n \t\t\tEnforcement Technology\".\n .\n Stephen R. van den Berg\n \t\t\tPort of bcrypt.\n .\n Mamone Tarsha Kurdi\tPowerpc64 assembly and fat build setup,\n \t\t\tincluding AES and GCM. Arm64 assembly and fat\n \t\t\tbuild setup, including AES, Chacha, GCM, SHA1,\n \t\t\tSHA256. S390x assembly and fat build setup,\n \t\t\tincluding AES, Chacha, memxor, memxor3, SHA1,\n \t\t\tSHA256, SHA512, SHA3.\n .\n Nicolas Mora\t\tRFC 3394 keywrap.\n .\n Tianjia Zhang\t\tSM3 hash function.\n .\n Amitay Isaacs\t\tPowerpc64 assembly for secp192r1, secp224r1\n \t\t\tand secp256r1.\n .\n Martin Schwenke\t\tPowerpc64 assembly for secp384r1, secp521r1,\n \t\t\tcurve25519 and curve448.\n 8X--------- end of AUTHORS file ------------------------------------\n\nFiles: *\nCopyright: 2001-2022 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: aes-invert-internal.c aes-set-decrypt-key.c\n aes-set-encrypt-key.c aes-set-key-internal.c\nCopyright: 2013, Niels M\u00f6ller\n 2000-2002, Rafael R. Sevilla, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: x86*/aes-*-internal.asm\nCopyright: 2001, 2002, 2005 Rafael R. Sevilla, Niels M\u00f6ller\n 2008, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.c\nCopyright: 2003 Nikos Mavroyanopoulos\n 2004 Simon Josefsson\n 2004 Free Software Foundation, Inc.\n 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo-meta.c pbkdf2.c\n salsa20-128-set-key.c salsa20-256-set-key.c\n salsa20-core-internal.c\n salsa20-set-key.c salsa20-set-nonce.c\nCopyright: 2012-2014 Niels M\u00f6ller\n 2004, 2012 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.h\n salsa20-internal.h salsa20.h\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/chacha-2core.asm arm64/chacha-4core.asm\n arm64/chacha-core-internal.asm s390x/vf/chacha-2core.asm\n s390x/vf/chacha-4core.asm s390x/vf/chacha-core-internal.asm\nCopyright: 2020 Niels M\u00f6ller and Torbj\u00f6rn Granlund\n 2022 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/aes128-decrypt.asm arm64/crypto/aes128-encrypt.asm\n arm64/crypto/aes192-decrypt.asm arm64/crypto/aes192-encrypt.asm\n arm64/crypto/aes256-decrypt.asm arm64/crypto/aes256-encrypt.asm\n arm64/crypto/sha1-compress.asm arm64/crypto/sha256-compress.asm\n arm64/fat/aes128-decrypt-2.asm arm64/fat/aes128-encrypt-2.asm\n arm64/fat/aes192-decrypt-2.asm arm64/fat/aes192-encrypt-2.asm\n arm64/fat/aes256-decrypt-2.asm arm64/fat/aes256-encrypt-2.asm\n arm64/fat/ghash-set-key-2.asm arm64/fat/ghash-update-2.asm\n arm64/fat/sha1-compress-2.asm arm64/fat/sha256-compress-2.asm\n fat-arm64.c fat-s390x.c powerpc64/fat/ghash-set-key-2.asm\n powerpc64/fat/ghash-update-2.asm s390x/fat/aes128-decrypt-2.asm\n s390x/fat/aes128-encrypt-2.asm s390x/fat/aes128-set-decrypt-key-2.asm\n s390x/fat/aes128-set-encrypt-key-2.asm\n s390x/fat/aes192-decrypt-2.asm s390x/fat/aes192-encrypt-2.asm\n s390x/fat/aes192-set-decrypt-key-2.asm\n s390x/fat/aes192-set-encrypt-key-2.asm s390x/fat/aes256-decrypt-2.asm\n s390x/fat/aes256-encrypt-2.asm s390x/fat/aes256-set-decrypt-key-2.asm\n s390x/fat/aes256-set-encrypt-key-2.asm s390x/fat/chacha-2core.asm\n s390x/fat/chacha-4core.asm s390x/fat/chacha-core-internal-2.asm\n s390x/fat/cpu-facility.asm s390x/fat/ghash-set-key-2.asm\n s390x/fat/ghash-update-2.asm s390x/fat/memxor3-2.asm\n s390x/fat/sha1-compress-2.asm s390x/fat/sha256-compress-2.asm\n s390x/fat/sha3-permute-2.asm s390x/fat/sha512-compress-2.asm\n s390x/memxor.asm s390x/msa/sha1-compress.asm\n s390x/msa_x1/aes128-decrypt.asm s390x/msa_x1/aes128-encrypt.asm\n s390x/msa_x1/aes128-set-decrypt-key.asm\n s390x/msa_x1/aes128-set-encrypt-key.asm s390x/msa_x1/sha256-compress.asm\n s390x/msa_x2/aes192-decrypt.asm s390x/msa_x2/aes192-encrypt.asm\n s390x/msa_x2/aes192-set-decrypt-key.asm\n s390x/msa_x2/aes192-set-encrypt-key.asm s390x/msa_x2/aes256-decrypt.asm\n s390x/msa_x2/aes256-encrypt.asm s390x/msa_x2/aes256-set-decrypt-key.asm\n s390x/msa_x2/aes256-set-encrypt-key.asm s390x/msa_x2/sha512-compress.asm\n s390x/msa_x4/ghash-set-key.asm s390x/msa_x4/ghash-update.asm\n s390x/vf/memxor3.asm\nCopyright: 2020, 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/ghash-set-key.asm arm64/crypto/ghash-update.asm\n powerpc64/p8/ghash-set-key.asm powerpc64/p8/ghash-update.asm\nCopyright: 2020 Niels M\u00f6ller and Mamone Tarsha\n 2021 Michael Weiser\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64.h base64-meta.c\nCopyright: 2002 Dan Egnor, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64url-decode.c base64url-encode.c\nCopyright: 2015 Amos Jeffries, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: block-internal.h\nCopyright: 2019 Dmitry Eremin-Solenikov\n 2018 Red Hat, Inc.\n 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\n 2010 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.h\nCopyright: 1998, 2001 Free Software Foundation, Inc.\n 1998, 2001 Ray Dassen\n 1998, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: camellia-table.c camellia-crypt-internal.c camellia.h camellia-internal.h\n camellia128-set-encrypt-key.c camellia256-set-encrypt-key.c camellia-absorb.c\nCopyright: 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2010, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ccm.c ccm.h ccm-aes128.c\n ccm-aes192.c ccm-aes256.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cfb.c\n cfb.h\n ecc-gostdsa-sign.c\n ecc-gostdsa-verify.c\n gostdsa-sign.c\n gostdsa-verify.c\nCopyright: 2015, 2017 Dmitry Eremin-Solenikov\n 2001, 2011, 2013, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: chacha-core-internal.c chacha-crypt.c\n chacha-internal.h chacha.h chacha-set-nonce.c\nCopyright: 2012 Simon Josefsson\n 2013 Joachim Str\u00f6mbergson\n 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-aes128.c cmac-aes256.c\n cmac.h hkdf.c hkdf.h\n xts-aes128.c xts-aes256.c xts.c\nCopyright: 2017, 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3-meta.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3.c\n ecc-gost-gc256b.c ecc-gost-gc512a.c\n gost28147-internal.h gostdsa-vko.c\n hmac-gosthash94.c pbkdf2-hmac-gosthash94.c\nCopyright: 2016-2020 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac.c cmac64.c\nCopyright: 2012 Stefan Metzmacher, Michael Adam, Jeremy Allison\n 2017 Red Hat Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ctr16.c\n pkcs1-internal.h pkcs1-sec-decrypt.c\n version.h.in xts.h\nCopyright: 2015, 2017, 2018 Red Hat, Inc.\n 2001, 2002, 2005-2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: curve448-eh-to-x.c curve448.h\n curve448-mul-g.c curve448-mul.c\n ecc-curve448.c ed448-shake256-pubkey.c\n ed448-shake256-sign.c ed448-shake256-verify.c\n shake256.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: der2dsa.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: desCode.h descore.README desdata.c\nCopyright: \u00a9 2002 Dana L. How\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Library General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Library\n General Public License, version 2, can be found in\n /usr/share/common-licenses/LGPL-2.\n\nFiles: des.c des.h\nCopyright: 1992 Dana L. How\n 1997, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: dsa2sexp.c\nCopyright: 2002, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: eccdata.c eddsa-hash.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\n 2013, 2014, 2017, 2019 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ecc-secp192r1.c\nCopyright: 2013, 2014, 2019, 2021 Niels M\u00f6ller\n 2019 Wim Lewis\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/base16dec.c examples/base16enc.c\n examples/base64dec.c examples/base64enc.c\nCopyright: 2006, 2012, Jeronimo Pellegrini, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/nettle-openssl.c\nCopyright: 2015, 2017, 2018, Red Hat, Inc.\n 2001, 2002, 2005-2018, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gcm.c gcm.h ghash-set-key.c ghash-update.c\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018, 2022 Niels M\u00f6ller\n 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gmp-glue.c\n gmp-glue.h\nCopyright: 2013 Red Hat, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gost28147.c gosthash94.c\nCopyright: 2019 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: Expat\n\nFiles: gostdsa.h\nCopyright: 2015, Dmity Eremin-Solenikov\n 2013, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94-meta.c\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94.h\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-md5-meta.c hmac-ripemd160-meta.c\n hmac-sha1-meta.c hmac-sha224-meta.c\n hmac-sha256-meta.c hmac-sha384-meta.c\n hmac-sha512-meta.c nettle-meta-macs.c\n pss-mgf1.c pss-mgf1.h pss.c pss.h\n rsa-pss-sha256-sign-tr.c rsa-pss-sha256-verify.c\n rsa-pss-sha512-sign-tr.c rsa-pss-sha512-verify.c\nCopyright: 2017, 2020 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-sm3.c hmac-sm3-meta.c\nCopyright: 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md2.c\nCopyright: ? Andrew Kuchling\n 2003 Andreas Sigfridsson\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md4.c\nCopyright: 2003 Marcus Comstedt\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md5.c md5-compress.c\nCopyright: Colin Plumb, Andrew Kuchling\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: memxor.c\nCopyright: 1991,1993, 1995 Free Software Foundation, Inc.\n 2010 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nettle-meta-armors.c\n nettle-meta-ciphers.c\n nettle-meta-hashes.c\nCopyright: 2011 Daniel Kahn Gillmor\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nist-keywrap.c nist-keywrap.h\nCopyright: 2021 Nicolas Mora\n 2021 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha1.c\n pbkdf2-hmac-sha256.c\n pbkdf2.h\n salsa20-crypt.c\nCopyright: 2012, Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha384.c pbkdf2-hmac-sha512.c\nCopyright: 2012 Simon Josefsson\n 2021 Nicolas Mora\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-aes.c\nCopyright: 2014 Niels M\u00f6ller\n 2013 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.c\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013 Niels M\u00f6ller\n 2012, 2013 Andrew M. (floodyberry)\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.h\n poly1305.h\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013, 2014, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-curve25519-modp.asm powerpc64/ecc-curve448-modp.asm\n powerpc64/ecc-secp521r1-modp.asm\nCopyright: 2021 Martin Schwenke & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp192r1-modp.asm powerpc64/ecc-secp224r1-modp.asm\nCopyright: 2021 Amitay Isaacs, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp256r1-redc.asm\nCopyright: 2021 Amitay Isaacs & Martin Schwenke, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp384r1-modp.asm\nCopyright: 2021 Martin Schwenke, Amitay Isaacs & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160.c ripemd160-compress.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160-meta.c ripemd160.h ripemd160-internal.h\nCopyright: 2011 Andres Mejia\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-blind.c rsa-decrypt-tr.c\nCopyright: 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-pkcs1-sign-tr.c salsa20r12-crypt.c\n siv-cmac-aes128.c siv-cmac-aes256.c\n siv-cmac.c siv-cmac.h\nCopyright: 2012, 2013, 2017, 2018, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-compute-root.c\nCopyright: 2018 Red Hat, Inc\n 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-decrypt.c\nCopyright: 2018, Red Hat, Inc.\n 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sign-tr.c\nCopyright: 2018, Red Hat Inc.\n 2012, Nikos Mavrogiannopoulos\n 2001, 2015, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: s390x/vf/sha3-permute.asm\nCopyright: 2012 Niels M\u00f6ller\n 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c serpent-internal.h\nCopyright: 1998 Ross Anderson, Eli Biham, Lars Knudsen\n 2003, 2004, 2005 Free Software Foundation, Inc.\n 2010, 2011 Simon Josefsson\n 2011, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha1-compress.c\nCopyright: 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha512.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sm3.c sm3.h sm3-meta.c\nCopyright: 2017 Jia Zhang\n 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/arctwo-test.c\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/ccm-test.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/chacha-test.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/curve448-dh-test.c\n testsuite/ed448-test.c\n testsuite/shake256-test.c\nCopyright: 2017, Red Hat, Inc.\n 2017, Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/siv-test.c\nCopyright: 2012, 2013, 2017, 2018 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: texinfo.tex\nCopyright: 1985, 1986, 1988, 1990-2009, Free Software Foundation, Inc.\nLicense: GPL-3+\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nFiles: twofish*\nCopyright: 1999 Ruud de Rooij <ruud at debian.org>\n 1999 J.H.M. Dassen (Ray) <jdassen at wi.LeidenUniv.nl>\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: tools/pkcs1-conv.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: getopt*\nCopyright: 1987-2001 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: config.guess config.sub\nCopyright: \u00a9 1992-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf exception\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program.\n\nFiles: debian/*\nCopyright: none\nLicense: public-domain\n I believe that most files in debian/ hardly contains any creative\n expression eligible for copyright.\n\nFiles: debian/sexp-conv.1\nCopyright: 2002 Timshel Knoll <timshel at debian.org>\n 2007 Magnus Holmgren\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June. 1991.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License, version 2, can be found in\n /usr/share/common-licenses/GPL-2.\nComment:\n This manpage was copied from the lsh-utils package. Timshel didn't\n explicitly select a license for his packaging work, but I think that\n it can be considered released under the same license as LSH itself.\n\nFiles: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1\nCopyright: 2007 Magnus Holmgren\nLicense: GAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved.\n\nLicense: LGPL-3+\n The nettle library is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\n License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, see http://www.gnu.org/licenses/.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU Lesser General Public License can be found in\n /usr/share/common-licenses/LGPL.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU General Public License can be found in\n /usr/share/common-licenses/GPL.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Autoconf exception"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GAP",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Nettle\nUpstream-Contact: Niels M\u00f6ller <nisse at lysator.liu.se>\nSource: http://www.lysator.liu.se/~nisse/nettle/\nCopyright: \u00a9 2001-2020 Niels M\u00f6ller\n Some parts are Copyright \u00a9 the Free Software Foundation and various\n people. See below and source code comments for details.\nLicense: LGPL-3+ or GPL-2+\nComment:\n Nettle is dual licenced under the GNU General Public License version\n 2 or later, and the GNU Lesser General Public License version 3 or\n later. When using Nettle, you must comply fully with all conditions\n of at least one of these licenses. A few of the individual files are\n licensed under more permissive terms, or in the public domain. To\n find the current status of particular files, you have to read the\n copyright notices at the top of the files.\n .\n 8X--------- AUTHORS file -----------------------------------------\n Authors of GNU Nettle\n .\n The oldest code in Nettle was copied into precursors of the Nettle\n library from other public domain or LGPLv2 sources.\n .\n Steve Reid\t\tOriginal CAST128 implementation\n Dana L. How\t\tOriginal DES implementation,\n Colin Plumb\t\tOriginal MD5 implementation\n Peter Gutmann\t\tOriginal SHA1 implementation\n Andrew Kuchling\t\tOriginal MD2 implementation\n .\n Free Software Foundation\n \t\t\tHolds copyrights on code ported from\n \t\t\tlibgcrypt, written by Werner Koch and others.\n .\n J.H.M. Dassen\t\tOriginal port of blowfish to GNU lsh, later\n \t\t\tsplit off into Nettle. (This blowfish\n \t\t\timplementation was replaced later).\n \t\t\tTwofish tests.\n .\n Ruud de Rooij\t\tTwofish implementation for GNU lsh, later split off into Nettle.\n .\n Rafael Sevilla\t\tAES C and x86 implementation, original port of\n \t\t\tSerpent, for GNU lsh, later split off into Nettle.\n .\n Authors of Nettle (in roughly chronological order of initial contribution)\n .\n Niels M\u00f6ller\t\tMain author.\n .\n Dan Egnor\t\tBase64 conversion.\n .\n Andreas Sigfridsson\tPort of MD2, from Andrew Kuchling's python\n \t\t\tcryptography toolkit.\n .\n Marcus Comstedt\t\tImplemented MD4.\n .\n D. J. Bernstein\t\tSalsa20 public domain reference implementation.\n .\n Simon Josefsson\t\tPort of Arctwo, from GnuTLS and libgcrypt. New\n \t\t\tports of LGPL Serpent and Blowfish code, from\n \t\t\tlibgcrypt. Port of Salsa20, based on djb's\n \t\t\treference. Implementation of PBKDF2 (RFC\n \t\t\t2898).\n .\n Henrik Grubbstr\u00f6m\tAES assembly for Sparc64.\n .\n Magnus Holmgren\t\tConversion of DSA keys from DER format to SEXP\n \t\t\tformat.\n .\n Daniel Kahn Gillmor\tAdded the lists for nettle_get_ciphers,\n \t\t\tnettle_get_hashes and nettle_get_armors. Test\n \t\t\tvectors for hashes and hmac.\n .\n Nippon Telegraph and Telephone Corporation\n \t\t\tLGPL:ed reference implementation of the\n \t\t\tCamellia cipher.\n .\n Andrew M. (floodyberry)\n \t\t\tThe poly1305 code nettle's C implementation is\n \t\t\tderived from.\n .\n Aleksey Kravchenko\tThe gosthash94 implementation in rhash library.\n .\n Stefan Metzmacher, Jeremy Allison, Michael Adam\n \t\t\tContributed to the CMAC code, which was added\n \t\t\tto Nettle by Nikos Mavroyanopoulos.\n .\n Nikos Mavroyanopoulos\tGCM implementation, RSA blinding code,\n \t\t\tinterface for general rsa-pkcs1 signatures.\n \t\t\tPort of gosthash94 implementation from rhash. Port of\n \t\t\tpoly1305. Salsa20r12 variant. HKDF (RFC 5869)\n \t\t\timplementation. CMAC and SIV-CMAV\n \t\t\timplementation. CTR and GCM optimizations.\n \t\t\tImplementation of versioned symbols. Setup of\n \t\t\t.gitlab-ci.yml. Large number of smaller fixes.\n .\n Andres Mejia\t\tPorted Ripemd160 from libgcrypt.\n .\n Martin Storsj\u00f6\t\tImplemented m4 macrology to make x86_64\n \t\t\tassembly files work with the windows ABI.\n \t\t\tSeveral other portability improvements.\n .\n Jeronimo Pellegrini\tDocumentation for base16 and base64 functions.\n .\n Tim Ruehsen\t\tSeveral smaller cleanups and bugfixes.\n .\n Fredrik Thulin\t\tTest vectors for pbkdf2-hmac-sha512.\n .\n Joachim Str\u00f6mbergson\tChacha implementation. Support for sha512_224\n \t\t\tand sha512_256.\n .\n Owen Kirby\t\tImplementation of CCM mode.\n .\n Amos Jeffries\t\tImplementation of base64url encoding.\n .\n Daiki Ueno\t\tImplementation of RSA-PSS signatures,\n \t\t\tcurve448, shake256, ed448-shake256 signatures,\n \t\t\tchacha functions for 32-bit nonce, struct\n \t\t\tnettle_mac interface.\n .\n Dmitry Baryshkov\tCFB and CFB8 modes, CMAC64. gosthash94cp and\n \t\t\tStreebog hash functions, GOST DSA signatures\n \t\t\tand curves GC256B and GC512A. Various bug\n \t\t\tfixes and cleanups.\n .\n Simo Sorce\t\tSide-channel silent RSA functions. XTS\n \t\t\timplementation.\n .\n H.J. Lu\t\t\tAssembly annotations for Intel \"Control-flow\n \t\t\tEnforcement Technology\".\n .\n Stephen R. van den Berg\n \t\t\tPort of bcrypt.\n .\n Mamone Tarsha Kurdi\tPowerpc64 assembly and fat build setup,\n \t\t\tincluding AES and GCM. Arm64 assembly and fat\n \t\t\tbuild setup, including AES, Chacha, GCM, SHA1,\n \t\t\tSHA256. S390x assembly and fat build setup,\n \t\t\tincluding AES, Chacha, memxor, memxor3, SHA1,\n \t\t\tSHA256, SHA512, SHA3.\n .\n Nicolas Mora\t\tRFC 3394 keywrap.\n .\n Tianjia Zhang\t\tSM3 hash function.\n .\n Amitay Isaacs\t\tPowerpc64 assembly for secp192r1, secp224r1\n \t\t\tand secp256r1.\n .\n Martin Schwenke\t\tPowerpc64 assembly for secp384r1, secp521r1,\n \t\t\tcurve25519 and curve448.\n 8X--------- end of AUTHORS file ------------------------------------\n\nFiles: *\nCopyright: 2001-2022 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: aes-invert-internal.c aes-set-decrypt-key.c\n aes-set-encrypt-key.c aes-set-key-internal.c\nCopyright: 2013, Niels M\u00f6ller\n 2000-2002, Rafael R. Sevilla, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: x86*/aes-*-internal.asm\nCopyright: 2001, 2002, 2005 Rafael R. Sevilla, Niels M\u00f6ller\n 2008, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.c\nCopyright: 2003 Nikos Mavroyanopoulos\n 2004 Simon Josefsson\n 2004 Free Software Foundation, Inc.\n 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo-meta.c pbkdf2.c\n salsa20-128-set-key.c salsa20-256-set-key.c\n salsa20-core-internal.c\n salsa20-set-key.c salsa20-set-nonce.c\nCopyright: 2012-2014 Niels M\u00f6ller\n 2004, 2012 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.h\n salsa20-internal.h salsa20.h\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/chacha-2core.asm arm64/chacha-4core.asm\n arm64/chacha-core-internal.asm s390x/vf/chacha-2core.asm\n s390x/vf/chacha-4core.asm s390x/vf/chacha-core-internal.asm\nCopyright: 2020 Niels M\u00f6ller and Torbj\u00f6rn Granlund\n 2022 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/aes128-decrypt.asm arm64/crypto/aes128-encrypt.asm\n arm64/crypto/aes192-decrypt.asm arm64/crypto/aes192-encrypt.asm\n arm64/crypto/aes256-decrypt.asm arm64/crypto/aes256-encrypt.asm\n arm64/crypto/sha1-compress.asm arm64/crypto/sha256-compress.asm\n arm64/fat/aes128-decrypt-2.asm arm64/fat/aes128-encrypt-2.asm\n arm64/fat/aes192-decrypt-2.asm arm64/fat/aes192-encrypt-2.asm\n arm64/fat/aes256-decrypt-2.asm arm64/fat/aes256-encrypt-2.asm\n arm64/fat/ghash-set-key-2.asm arm64/fat/ghash-update-2.asm\n arm64/fat/sha1-compress-2.asm arm64/fat/sha256-compress-2.asm\n fat-arm64.c fat-s390x.c powerpc64/fat/ghash-set-key-2.asm\n powerpc64/fat/ghash-update-2.asm s390x/fat/aes128-decrypt-2.asm\n s390x/fat/aes128-encrypt-2.asm s390x/fat/aes128-set-decrypt-key-2.asm\n s390x/fat/aes128-set-encrypt-key-2.asm\n s390x/fat/aes192-decrypt-2.asm s390x/fat/aes192-encrypt-2.asm\n s390x/fat/aes192-set-decrypt-key-2.asm\n s390x/fat/aes192-set-encrypt-key-2.asm s390x/fat/aes256-decrypt-2.asm\n s390x/fat/aes256-encrypt-2.asm s390x/fat/aes256-set-decrypt-key-2.asm\n s390x/fat/aes256-set-encrypt-key-2.asm s390x/fat/chacha-2core.asm\n s390x/fat/chacha-4core.asm s390x/fat/chacha-core-internal-2.asm\n s390x/fat/cpu-facility.asm s390x/fat/ghash-set-key-2.asm\n s390x/fat/ghash-update-2.asm s390x/fat/memxor3-2.asm\n s390x/fat/sha1-compress-2.asm s390x/fat/sha256-compress-2.asm\n s390x/fat/sha3-permute-2.asm s390x/fat/sha512-compress-2.asm\n s390x/memxor.asm s390x/msa/sha1-compress.asm\n s390x/msa_x1/aes128-decrypt.asm s390x/msa_x1/aes128-encrypt.asm\n s390x/msa_x1/aes128-set-decrypt-key.asm\n s390x/msa_x1/aes128-set-encrypt-key.asm s390x/msa_x1/sha256-compress.asm\n s390x/msa_x2/aes192-decrypt.asm s390x/msa_x2/aes192-encrypt.asm\n s390x/msa_x2/aes192-set-decrypt-key.asm\n s390x/msa_x2/aes192-set-encrypt-key.asm s390x/msa_x2/aes256-decrypt.asm\n s390x/msa_x2/aes256-encrypt.asm s390x/msa_x2/aes256-set-decrypt-key.asm\n s390x/msa_x2/aes256-set-encrypt-key.asm s390x/msa_x2/sha512-compress.asm\n s390x/msa_x4/ghash-set-key.asm s390x/msa_x4/ghash-update.asm\n s390x/vf/memxor3.asm\nCopyright: 2020, 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/ghash-set-key.asm arm64/crypto/ghash-update.asm\n powerpc64/p8/ghash-set-key.asm powerpc64/p8/ghash-update.asm\nCopyright: 2020 Niels M\u00f6ller and Mamone Tarsha\n 2021 Michael Weiser\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64.h base64-meta.c\nCopyright: 2002 Dan Egnor, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64url-decode.c base64url-encode.c\nCopyright: 2015 Amos Jeffries, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: block-internal.h\nCopyright: 2019 Dmitry Eremin-Solenikov\n 2018 Red Hat, Inc.\n 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\n 2010 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.h\nCopyright: 1998, 2001 Free Software Foundation, Inc.\n 1998, 2001 Ray Dassen\n 1998, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: camellia-table.c camellia-crypt-internal.c camellia.h camellia-internal.h\n camellia128-set-encrypt-key.c camellia256-set-encrypt-key.c camellia-absorb.c\nCopyright: 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2010, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ccm.c ccm.h ccm-aes128.c\n ccm-aes192.c ccm-aes256.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cfb.c\n cfb.h\n ecc-gostdsa-sign.c\n ecc-gostdsa-verify.c\n gostdsa-sign.c\n gostdsa-verify.c\nCopyright: 2015, 2017 Dmitry Eremin-Solenikov\n 2001, 2011, 2013, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: chacha-core-internal.c chacha-crypt.c\n chacha-internal.h chacha.h chacha-set-nonce.c\nCopyright: 2012 Simon Josefsson\n 2013 Joachim Str\u00f6mbergson\n 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-aes128.c cmac-aes256.c\n cmac.h hkdf.c hkdf.h\n xts-aes128.c xts-aes256.c xts.c\nCopyright: 2017, 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3-meta.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3.c\n ecc-gost-gc256b.c ecc-gost-gc512a.c\n gost28147-internal.h gostdsa-vko.c\n hmac-gosthash94.c pbkdf2-hmac-gosthash94.c\nCopyright: 2016-2020 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac.c cmac64.c\nCopyright: 2012 Stefan Metzmacher, Michael Adam, Jeremy Allison\n 2017 Red Hat Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ctr16.c\n pkcs1-internal.h pkcs1-sec-decrypt.c\n version.h.in xts.h\nCopyright: 2015, 2017, 2018 Red Hat, Inc.\n 2001, 2002, 2005-2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: curve448-eh-to-x.c curve448.h\n curve448-mul-g.c curve448-mul.c\n ecc-curve448.c ed448-shake256-pubkey.c\n ed448-shake256-sign.c ed448-shake256-verify.c\n shake256.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: der2dsa.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: desCode.h descore.README desdata.c\nCopyright: \u00a9 2002 Dana L. How\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Library General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Library\n General Public License, version 2, can be found in\n /usr/share/common-licenses/LGPL-2.\n\nFiles: des.c des.h\nCopyright: 1992 Dana L. How\n 1997, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: dsa2sexp.c\nCopyright: 2002, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: eccdata.c eddsa-hash.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\n 2013, 2014, 2017, 2019 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ecc-secp192r1.c\nCopyright: 2013, 2014, 2019, 2021 Niels M\u00f6ller\n 2019 Wim Lewis\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/base16dec.c examples/base16enc.c\n examples/base64dec.c examples/base64enc.c\nCopyright: 2006, 2012, Jeronimo Pellegrini, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/nettle-openssl.c\nCopyright: 2015, 2017, 2018, Red Hat, Inc.\n 2001, 2002, 2005-2018, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gcm.c gcm.h ghash-set-key.c ghash-update.c\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018, 2022 Niels M\u00f6ller\n 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gmp-glue.c\n gmp-glue.h\nCopyright: 2013 Red Hat, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gost28147.c gosthash94.c\nCopyright: 2019 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: Expat\n\nFiles: gostdsa.h\nCopyright: 2015, Dmity Eremin-Solenikov\n 2013, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94-meta.c\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94.h\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-md5-meta.c hmac-ripemd160-meta.c\n hmac-sha1-meta.c hmac-sha224-meta.c\n hmac-sha256-meta.c hmac-sha384-meta.c\n hmac-sha512-meta.c nettle-meta-macs.c\n pss-mgf1.c pss-mgf1.h pss.c pss.h\n rsa-pss-sha256-sign-tr.c rsa-pss-sha256-verify.c\n rsa-pss-sha512-sign-tr.c rsa-pss-sha512-verify.c\nCopyright: 2017, 2020 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-sm3.c hmac-sm3-meta.c\nCopyright: 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md2.c\nCopyright: ? Andrew Kuchling\n 2003 Andreas Sigfridsson\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md4.c\nCopyright: 2003 Marcus Comstedt\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md5.c md5-compress.c\nCopyright: Colin Plumb, Andrew Kuchling\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: memxor.c\nCopyright: 1991,1993, 1995 Free Software Foundation, Inc.\n 2010 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nettle-meta-armors.c\n nettle-meta-ciphers.c\n nettle-meta-hashes.c\nCopyright: 2011 Daniel Kahn Gillmor\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nist-keywrap.c nist-keywrap.h\nCopyright: 2021 Nicolas Mora\n 2021 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha1.c\n pbkdf2-hmac-sha256.c\n pbkdf2.h\n salsa20-crypt.c\nCopyright: 2012, Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha384.c pbkdf2-hmac-sha512.c\nCopyright: 2012 Simon Josefsson\n 2021 Nicolas Mora\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-aes.c\nCopyright: 2014 Niels M\u00f6ller\n 2013 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.c\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013 Niels M\u00f6ller\n 2012, 2013 Andrew M. (floodyberry)\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.h\n poly1305.h\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013, 2014, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-curve25519-modp.asm powerpc64/ecc-curve448-modp.asm\n powerpc64/ecc-secp521r1-modp.asm\nCopyright: 2021 Martin Schwenke & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp192r1-modp.asm powerpc64/ecc-secp224r1-modp.asm\nCopyright: 2021 Amitay Isaacs, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp256r1-redc.asm\nCopyright: 2021 Amitay Isaacs & Martin Schwenke, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp384r1-modp.asm\nCopyright: 2021 Martin Schwenke, Amitay Isaacs & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160.c ripemd160-compress.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160-meta.c ripemd160.h ripemd160-internal.h\nCopyright: 2011 Andres Mejia\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-blind.c rsa-decrypt-tr.c\nCopyright: 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-pkcs1-sign-tr.c salsa20r12-crypt.c\n siv-cmac-aes128.c siv-cmac-aes256.c\n siv-cmac.c siv-cmac.h\nCopyright: 2012, 2013, 2017, 2018, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-compute-root.c\nCopyright: 2018 Red Hat, Inc\n 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-decrypt.c\nCopyright: 2018, Red Hat, Inc.\n 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sign-tr.c\nCopyright: 2018, Red Hat Inc.\n 2012, Nikos Mavrogiannopoulos\n 2001, 2015, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: s390x/vf/sha3-permute.asm\nCopyright: 2012 Niels M\u00f6ller\n 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c serpent-internal.h\nCopyright: 1998 Ross Anderson, Eli Biham, Lars Knudsen\n 2003, 2004, 2005 Free Software Foundation, Inc.\n 2010, 2011 Simon Josefsson\n 2011, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha1-compress.c\nCopyright: 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha512.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sm3.c sm3.h sm3-meta.c\nCopyright: 2017 Jia Zhang\n 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/arctwo-test.c\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/ccm-test.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/chacha-test.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/curve448-dh-test.c\n testsuite/ed448-test.c\n testsuite/shake256-test.c\nCopyright: 2017, Red Hat, Inc.\n 2017, Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/siv-test.c\nCopyright: 2012, 2013, 2017, 2018 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: texinfo.tex\nCopyright: 1985, 1986, 1988, 1990-2009, Free Software Foundation, Inc.\nLicense: GPL-3+\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nFiles: twofish*\nCopyright: 1999 Ruud de Rooij <ruud at debian.org>\n 1999 J.H.M. Dassen (Ray) <jdassen at wi.LeidenUniv.nl>\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: tools/pkcs1-conv.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: getopt*\nCopyright: 1987-2001 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: config.guess config.sub\nCopyright: \u00a9 1992-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf exception\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program.\n\nFiles: debian/*\nCopyright: none\nLicense: public-domain\n I believe that most files in debian/ hardly contains any creative\n expression eligible for copyright.\n\nFiles: debian/sexp-conv.1\nCopyright: 2002 Timshel Knoll <timshel at debian.org>\n 2007 Magnus Holmgren\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June. 1991.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License, version 2, can be found in\n /usr/share/common-licenses/GPL-2.\nComment:\n This manpage was copied from the lsh-utils package. Timshel didn't\n explicitly select a license for his packaging work, but I think that\n it can be considered released under the same license as LSH itself.\n\nFiles: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1\nCopyright: 2007 Magnus Holmgren\nLicense: GAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved.\n\nLicense: LGPL-3+\n The nettle library is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\n License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, see http://www.gnu.org/licenses/.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU Lesser General Public License can be found in\n /usr/share/common-licenses/LGPL.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU General Public License can be found in\n /usr/share/common-licenses/GPL.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libhogweed6 at 3.8.1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1170,6 +3308,29 @@
"content": "d50716d5824083d667427817d506b45d3f59dc77e1ca52de000f3f62d4918afa"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Libidn2\nUpstream-Contact: Simon Josefsson <simon at josefsson.org>\nSource: https://www.gnu.org/software/libidn/#libidn2\n\nFiles: *\nCopyright: Copyright (C) 2011-2014 Simon Josefsson\nLicense: GPL-3+\n\nFiles: *.c *.h\nCopyright: Copyright (C) 2011-2014 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: build-aux/* lib/* GNUmakefile maint.mk\nCopyright: Copyright (C) 2001-2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: doc/gdoc\nCopyright: Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Simon Josefsson\n Copyright (c) 2001, 2002 Nikos Mavrogiannopoulos\n Copyright (c) 1998 Michael Zucchi\nLicense: GPL-3+\n\nFiles: lib/IdnaMappingTable.txt lib/DerivedNormalizationProps.txt tests/IdnaTest.txt\nCopyright: Copyright (c) 1991-2010 Unicode, Inc.\nLicense: Unicode\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General Public\n License version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General Public\n License version 2 can be found in /usr/share/common-licenses/GPL-2.\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 3 can be found in /usr/share/common-licenses/LGPL-3.\n\nLicense: Unicode\n For terms of use, see http://www.unicode.org/terms_of_use.html\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights reserved. Distributed\n under the Terms of Use in http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of the Unicode data files and any associated documentation\n (the \"Data Files\") or Unicode software and any associated\n documentation (the \"Software\") to deal in the Data Files or Software\n without restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, and/or sell copies of the\n Data Files or Software, and to permit persons to whom the Data Files\n or Software are furnished to do so, provided that (a) the above\n copyright notice(s) and this permission notice appear with all copies\n of the Data Files or Software, (b) both the above copyright notice(s)\n and this permission notice appear in associated documentation, and\n (c) there is clear notice in each modified Data File or in the\n Software as well as in the documentation associated with the Data\n File(s) or Software that the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\n ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY\n CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY\n DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\n WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE\n OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without prior\n written authorization of the copyright holder.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Unicode",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Libidn2\nUpstream-Contact: Simon Josefsson <simon at josefsson.org>\nSource: https://www.gnu.org/software/libidn/#libidn2\n\nFiles: *\nCopyright: Copyright (C) 2011-2014 Simon Josefsson\nLicense: GPL-3+\n\nFiles: *.c *.h\nCopyright: Copyright (C) 2011-2014 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: build-aux/* lib/* GNUmakefile maint.mk\nCopyright: Copyright (C) 2001-2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: doc/gdoc\nCopyright: Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Simon Josefsson\n Copyright (c) 2001, 2002 Nikos Mavrogiannopoulos\n Copyright (c) 1998 Michael Zucchi\nLicense: GPL-3+\n\nFiles: lib/IdnaMappingTable.txt lib/DerivedNormalizationProps.txt tests/IdnaTest.txt\nCopyright: Copyright (c) 1991-2010 Unicode, Inc.\nLicense: Unicode\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General Public\n License version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General Public\n License version 2 can be found in /usr/share/common-licenses/GPL-2.\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 3 can be found in /usr/share/common-licenses/LGPL-3.\n\nLicense: Unicode\n For terms of use, see http://www.unicode.org/terms_of_use.html\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights reserved. Distributed\n under the Terms of Use in http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of the Unicode data files and any associated documentation\n (the \"Data Files\") or Unicode software and any associated\n documentation (the \"Software\") to deal in the Data Files or Software\n without restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, and/or sell copies of the\n Data Files or Software, and to permit persons to whom the Data Files\n or Software are furnished to do so, provided that (a) the above\n copyright notice(s) and this permission notice appear with all copies\n of the Data Files or Software, (b) both the above copyright notice(s)\n and this permission notice appear in associated documentation, and\n (c) there is clear notice in each modified Data File or in the\n Software as well as in the documentation associated with the Data\n File(s) or Software that the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\n ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY\n CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY\n DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\n WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE\n OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without prior\n written authorization of the copyright holder.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libidn2-0 at 2.3.3-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1186,6 +3347,31 @@
"content": "f2c48b367f9ec13f9aa577e7ccf81b371ce5d5fe22dddf9d7aa99f1e0bb7cfc4"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "custom",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: iptables\nUpstream-Contact: Netfilter Developer List <netfilter at vger.kernel.org>\nSource: https://www.netfilter.org/\n\nFiles: *\nCopyright: 2000-2002, the netfilter coreteam <coreteam at netfilter.org>\n Paul 'Rusty' Russell <rusty at rustcorp.com.au>\n Marc Boucher <marc+nf at mbsi.ca>\n James Morris <jmorris at intercode.com.au>\n Harald Welte <laforge at gnumonks.org>\n Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libebt_802_3.c\nCopyright: 2003 Chris Vitale <csv at bluetail.com>\nLicense: GPL-2\n\nFiles: extensions/libebt_ip.c extensions/libebt_log.c extensions/libebt_mark*.c\nCopyright: 2002 Bart De Schuymer <bdschuym at pandora.be>\nLicense: GPL-2\n\nFiles: extensions/libebt_limit.c\nCopyright: 2003 Tom Marshall <tommy at home.tig-grr.com>\nLicense: GPL-2\n\nFiles: extensions/libebt_nflog.c\nCopyright: 2008 Peter Warasin <peter at endian.com>\nLicense: GPL-2\n\nFiles: extensions/libip6t_DNAT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_DNPT.c\nCopyright: 2012-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_MASQUERADE.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_NETMAP.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_REDIRECT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_REJECT.c\nCopyright: 2000, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libip6t_SNAT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_SNPT.c\nCopyright: 2012-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_mh.c\nCopyright: 2006, USAGI/WIDE Project\nLicense: GPL-2\n\nFiles: extensions/libipt_CLUSTERIP.c\nCopyright: 2003, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ECN.c\nCopyright: 2002, by Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_REJECT.c\nCopyright: 2000, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libipt_TTL.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ULOG.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ttl.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_AUDIT.c\nCopyright: 2010-2011, Thomas Graf <tgraf at redhat.com>\n 2010-2011, Red Hat, Inc.\nLicense: GPL-2\n\nFiles: extensions/libxt_CHECKSUM.c\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\n 2010, Red Hat, Inc\nLicense: GPL-2\n\nFiles: extensions/libxt_CLASSIFY.c\nCopyright: 2003-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_CONNMARK.c\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_CONNSECMARK.c\nCopyright: 2006, Red Hat, Inc., James Morris <jmorris at redhat.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_CT.c\nCopyright: 2010-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_DSCP.c\nCopyright: 2000-2002, Matthew G. Marsh <mgm at paktronix.com>\n Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_HMARK.c\nCopyright: 2012, Hans Schillstrom <hans.schillstrom at ericsson.com>\n 2012, Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_IDLETIMER.c\nCopyright: 2010, Nokia Corporation\nLicense: GPL-2\n\nFiles: extensions/libxt_LED.c\nCopyright: 2008, Adam Nielsen <a.nielsen at shikadi.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_NFQUEUE.c\nCopyright: 2005, by Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_RATEEST.c\nCopyright: 2008-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_SECMARK.c\nCopyright: 2006, Red Hat, Inc., James Morris <jmorris at redhat.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_SET.c\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2010, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libxt_SYNPROXY.c\nCopyright: 2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_TCPMSS.c\nCopyright: 2000, Marc Boucher\nLicense: GPL-2\n\nFiles: extensions/libxt_TCPOPTSTRIP.c\nCopyright: 2007, Sven Schnelle <svens at bitebene.org>\n 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_TEE.c\nCopyright: 2007, Sebastian Cla\u00dfen <sebastian.classen [at] freenet.ag>\n 2007-2010, Jan Engelhardt <jengelh [at] medozas de>\nLicense: GPL-2\n\nFiles: extensions/libxt_TOS.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_TPROXY.c\nCopyright: 2002-2008, BalaBit IT Ltd.\nLicense: GPL-2\n\nFiles: extensions/libxt_addrtype.c\nCopyright: 2003-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_bpf.c\nCopyright: 2013, Google, Inc.\nLicense: GPL-2\n\nFiles: extensions/libxt_cluster.c\nCopyright: 2009, Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_connmark.c\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_conntrack.c\nCopyright: 2001, Marc Boucher (marc at mbsi.ca).\n 2007-2008, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_dccp.c\nCopyright: 2005, by Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_devgroup.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_dscp.c\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_ecn.c\nCopyright: 2002, Harald Welte <laforge at netfilter.org>\n 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_hashlimit.c\nCopyright: 2003-2004, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_osf.c\nCopyright: 2003+, Evgeniy Polyakov <zbr at ioremap.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_owner.c\nCopyright: 2007-2008, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_policy.c\nCopyright: 2005-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_rateest.c\nCopyright: 2008-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_sctp.c\nCopyright: 2003, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_set.c\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2010, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libxt_socket.c\nCopyright: 2007, BalaBit IT Ltd.\nLicense: GPL-2\n\nFiles: extensions/libxt_statistic.c\nCopyright: 2006-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_string.c\nCopyright: 2000, Emmanuel Roger <winfield at freegates.be>\n 2005-08-05, Pablo Neira Ayuso <pablo at eurodev.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_time.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_tos.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_u32.c\nCopyright: 2002, Don Cohen <don-netf at isis.cs3-inc.com>\n 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: include/linux/netfilter/ipset/ip_set.h\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2011, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_AUDIT.h\nCopyright: 2010-2011, Thomas Graf <tgraf at redhat.com>\n 2010-2011, Red Hat, Inc.\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_CHECKSUM.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\n 2010, Red Hat Inc\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_DSCP.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_IDLETIMER.h\nCopyright: 2004, 2010, Nokia Corporation\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_NFQUEUE.h\nCopyright: 2005, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_connmark.h\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_conntrack.h\nCopyright: 2001, Marc Boucher (marc at mbsi.ca)\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_dscp.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_ecn.h\nCopyright: 2002, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_osf.h\nCopyright: 2003+, Evgeniy Polyakov <johnpol at 2ka.mxt.ru>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4.h\nCopyright: 1998, Rusty Russell\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ip_queue.h\nCopyright: 2000, James Morris\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ECN.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_TTL.h\nCopyright: 2000, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ULOG.h\nCopyright: 2000-2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ttl.h\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv6.h\nCopyright: 1998, Rusty Russell\n 1999, David Jeffery\nLicense: GPL-2\n\nFiles: iptables/iptables-apply\nCopyright: 2006, Martin F. Krafft <madduck at madduck.net>\n 2010, GW <gw.2010 at tnode.com or http://gw.tnode.com/>\nLicense: Artistic\n\nFiles: iptables/iptables-save.c\nCopyright: 1999, Paul 'Rusty' Russell <rusty at rustcorp.com.au>\n 2000-2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: iptables/iptables-xml.c\nCopyright: 2006, Ufo Mechanic <azez at ufomechanic.net>\nLicense: GPL-2\n\nFiles: iptables/nft.c\nCopyright: 2012 Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2+\n\nFiles: iptables/nft-arp.c\nCopyright: 2013 Pablo Neira Ayuso <pablo at netfilter.org>\n 2013 Giuseppe Longo <giuseppelng at gmail.com>\nLicense: GPL-2+\n\nFiles: iptables/nft-bridge.c\nCopyright: 2014 Giuseppe Longo <giuseppelng at gmail.com>\nLicense: GPL-2+\n\nFiles: iptables/nft-ipv4.c iptables/nft-ipv6.c iptables/nft-shared.c\nCopyright: 2012-2013 Pablo Neira Ayuso <pablo at netfilter.org>\n 2013 Tomasz Bursztyka <tomasz.bursztyka at linux.intel.com>\nLicense: GPL-2+\n\nFiles: iptables/xtables-arp.c iptables/xtables-eb.c\nCopyright: 2002 Bart De Schuymer <bdschuym at pandora.be>\nLicense: GPL-2+\n\nFiles: libiptc/libip4tc.c\nCopyright: 1999, Paul ``Rusty'' Russell\nLicense: GPL-2\n\nFiles: libiptc/libip6tc.c\nCopyright: 1999, Paul ``Rusty'' Russell\nLicense: GPL-2\n\nFiles: libiptc/libiptc.c\nCopyright: 1999, Paul ``Rusty'' Russell\n 2000-2004, by the Netfilter Core Team <coreteam at netfilter.org>\n 2003, 2004, Harald Welte <laforge at netfilter.org>\n 2008, Jesper Dangaard Brouer <hawk at comx.dk>\nLicense: GPL-2\n\nFiles: libxtables/xtables.c\nCopyright: 2000-2006, by the netfilter coreteam <coreteam at netfilter.org>\nLicense: GPL-2\n\nFiles: libxtables/xtoptions.c\nCopyright: 2011, Jan Engelhardt\nLicense: GPL-2\n\nFiles: utils/nfsynproxy.c\nCopyright: 2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: utils/pf.os\nCopyright: 2000-2003, Michal Zalewski <lcamtuf at coredump.cx>\n 2003, Mike Frantzen <frantzen at w4g.org>\nLicense: custom\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n\nLicense: GPL-2\n This program is free software; you can redistribute it\n and/or modify it under the terms of the GNU General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later\n version.\n .\n This program is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied\n warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. See the GNU General Public License for more\n details.\n .\n You should have received a copy of the GNU General Public\n License along with this package; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n Boston, MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n On Debian systems, the full text can be found in the file \"/usr/share/common-licenses/Artistic\"\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libip4tc2 at 1.8.9-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1202,6 +3388,13 @@
"content": "3fc9742f9f1a37bcb9931df6074b4d1483419ef832ad5349f47323e75fc27864"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libjansson4 at 2.14-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1218,6 +3411,13 @@
"content": "d0e1ed8637d1c26b9720f6057d6355f18378bba5cc2553e459d1632783c00d70"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libjson-c5 at 0.16-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1234,6 +3434,13 @@
"content": "6a91eee690e6ad2207df3a355fc329a58d8e31bf5ca9a9dd4de8f7a1c812ddc5"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libk5crypto3 at 1.20.1-2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1250,6 +3457,18 @@
"content": "cfac89e6a7a54ff3c6a4f843310e25efeddaa771baeae470bd98bd588c373563"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkeyutils1 at 1.6.3-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1266,6 +3485,18 @@
"content": "af63bbbfc15fbd1f254b15c393b3b95b18b18cc81348fc1b4f1c9c34b4d672d7"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkmod2 at 30+20221128-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1282,6 +3513,18 @@
"content": "03ebdf235600f4a8a6d4fbc7080de0a776b1a701f43c4e9697944757591d7809"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkrb5-3 at 1.20.1-2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1298,6 +3541,18 @@
"content": "e489a9282c4b765c29d9eda7c4747e1cb58be71161012c3a57e2a8bc63dc0f5a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkrb5support0 at 1.20.1-2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1314,6 +3569,16 @@
"content": "fe524a9de7ed6b2a1465693f12d5f7be2d2d9f6d6e6bf028f17109263e173dc8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Locale-gettext\nUpstream-Contact: Phillip Vandry <vandry at TZoNE.ORG>\nSource: https://metacpan.org/release/gettext\n\nFiles: *\nCopyright: 1996-2005, Phillip Vandry <vandry at TZoNE.ORG>\nLicense: Artistic or GPL-1+\n\nFiles: debian/*\nCopyright: 1998-2009, Rapha\u00ebl Hertzog <hertzog at debian.org>\n 2008, Niko Tyni <ntyni at debian.org>\n 2010-2011, gregor herrmann <gregoa at debian.org>\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/liblocale-gettext-perl at 1.07-5?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1330,6 +3595,26 @@
"content": "64cde86cef1deaf828bd60297839b59710b5cd8dc50efd4f12643caaee9389d3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later OR BSD-2-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: lz4\nSource: https://github.com/lz4/lz4\n\nFiles: *\nCopyright: 2011-2020, Yann Collet.\nLicense: BSD-2-clause\n\nFiles: programs/bench.c\n programs/bench.h\n programs/datagen.c\n programs/datagen.h\n tests/datagencli.c\n tests/fullbench.c\n tests/fuzzer.c\n examples/Makefile\n programs/Makefile\n programs/lz4cli.c\n programs/lz4io.c\n programs/lz4io.h\n tests/Makefile\n ossfuzz/Makefile\n lib/dll/example/Makefile\n tests/checkTag.c\nCopyright: Yann Collet 2011-2020\nLicense: GPL-2+\n\nFiles: lib/lz4file.c\n lib/lz4file.h\nCopyright: 2022, Xiaomi Inc.\nLicense: BSD-2-clause\n\nFiles: programs/platform.h\n programs/util.h\nCopyright: 2016-2020, Przemyslaw Skibinski, Yann Collet\nLicense: GPL-2+\n\nFiles: tests/checkFrame.c\n tests/frametest.c\nCopyright: Yann Collet 2014-2020\nLicense: GPL-2+\n\nFiles: examples/compress_functions.c\n examples/simple_buffer.c\nCopyright: Kyle Harper\nLicense: BSD-2-clause\n\nFiles: tests/abiTest.c\n tests/roundTripTest.c\nCopyright: 2016-2020, Yann Collet, Facebook, Inc.\nLicense: GPL-2+ or BSD-2-clause\n\nFiles: contrib/djgpp/*\nCopyright: 2015, Louis P. Santillan <lpsantil at gmail.com>\nLicense: BSD-2-clause\n\nFiles: tests/test-lz4-speed.py\nCopyright: 2016-2020, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.\nLicense: BSD-2-clause\n\nFiles: examples/blockStreaming_lineByLine.c\n examples/blockStreaming_doubleBuffer.c\n examples/printVersion.c\nCopyright: Takayuki Matsuoka\nLicense: BSD-2-clause\n\nFiles: debian/*\nCopyright: 2013 - 2022 Nobuhiro Iwamatsu <iwamatsu at debian.org>\nLicense: GPL-2+\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n .\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are \n met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" \n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, \n THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT \n OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/liblz4-1 at 1.9.4-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1346,6 +3631,95 @@
"content": "d4b7736e58512a2b047f9cb91b71db5a3cf9d3451192fc6da044c77bf51fe869"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "PD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "probably-PD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "permissive-fsf",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Autoconf",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "permissive-nowarranty",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "none",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "config-h",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "noderivs",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "PD-debian",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/liblzma5 at 5.4.1-0.2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1362,6 +3736,68 @@
"content": "03539fd30c509e27101d13a56e52eda9062bdf1aefe337c07ab56def25a13eab"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-Aaron-D-Gifford",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-2-clause-NetBSD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ },
+ {
+ "license": {
+ "name": "public-domain-md4",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "public-domain-md5",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "public-domain-sha1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libmd0 at 1.0.4-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1378,6 +3814,18 @@
"content": "4581f42e3373cb72f9ea4e88163b17873afca614a6c6f54637e95aa75983ea7c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libmnl0 at 1.0.4-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1394,6 +3842,71 @@
"content": "a259d82ccbcfa230b492752d8d525d0a40d7938bf62fb90e83e16048ee88bf83"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libmount1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1410,6 +3923,26 @@
"content": "98fa7a53dc565a38b65fb70422ad08001bf5361d8fbc74255280c329996a6bec"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "MIT/X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: ncurses\nUpstream-Contact: bug-ncurses at gnu.org\n Thomas Dickey <dickey at his.com>\nSource: https://invisible-mirror.net/archives/ncurses/\n\nFiles: *\nCopyright: 1998-2017,2018 Free Software Foundation, Inc.\n 1996-2020,2021 Thomas E. Dickey\n 2001 Pradeep Padala\nLicense: MIT/X11\n\nFiles: install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n\nFiles: progs/tset.c ncurses/tinfo/read_termcap.c\nCopyright: 1980,1991,1992,1993 The Regents of the University of California\nLicense: BSD-3-clause\n\nLicense: MIT/X11\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, distribute with modifications, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name(s) of the above copyright\n holders shall not be used in advertising or otherwise to promote the\n sale, use or other dealings in this Software without prior written\n authorization.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libncursesw6 at 6.4-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1426,6 +3959,59 @@
"content": "45922e6e289ffd92f0f92d2bb9159e84236ff202d552a461bf10e5335b3f0261"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Nettle\nUpstream-Contact: Niels M\u00f6ller <nisse at lysator.liu.se>\nSource: http://www.lysator.liu.se/~nisse/nettle/\nCopyright: \u00a9 2001-2020 Niels M\u00f6ller\n Some parts are Copyright \u00a9 the Free Software Foundation and various\n people. See below and source code comments for details.\nLicense: LGPL-3+ or GPL-2+\nComment:\n Nettle is dual licenced under the GNU General Public License version\n 2 or later, and the GNU Lesser General Public License version 3 or\n later. When using Nettle, you must comply fully with all conditions\n of at least one of these licenses. A few of the individual files are\n licensed under more permissive terms, or in the public domain. To\n find the current status of particular files, you have to read the\n copyright notices at the top of the files.\n .\n 8X--------- AUTHORS file -----------------------------------------\n Authors of GNU Nettle\n .\n The oldest code in Nettle was copied into precursors of the Nettle\n library from other public domain or LGPLv2 sources.\n .\n Steve Reid\t\tOriginal CAST128 implementation\n Dana L. How\t\tOriginal DES implementation,\n Colin Plumb\t\tOriginal MD5 implementation\n Peter Gutmann\t\tOriginal SHA1 implementation\n Andrew Kuchling\t\tOriginal MD2 implementation\n .\n Free Software Foundation\n \t\t\tHolds copyrights on code ported from\n \t\t\tlibgcrypt, written by Werner Koch and others.\n .\n J.H.M. Dassen\t\tOriginal port of blowfish to GNU lsh, later\n \t\t\tsplit off into Nettle. (This blowfish\n \t\t\timplementation was replaced later).\n \t\t\tTwofish tests.\n .\n Ruud de Rooij\t\tTwofish implementation for GNU lsh, later split off into Nettle.\n .\n Rafael Sevilla\t\tAES C and x86 implementation, original port of\n \t\t\tSerpent, for GNU lsh, later split off into Nettle.\n .\n Authors of Nettle (in roughly chronological order of initial contribution)\n .\n Niels M\u00f6ller\t\tMain author.\n .\n Dan Egnor\t\tBase64 conversion.\n .\n Andreas Sigfridsson\tPort of MD2, from Andrew Kuchling's python\n \t\t\tcryptography toolkit.\n .\n Marcus Comstedt\t\tImplemented MD4.\n .\n D. J. Bernstein\t\tSalsa20 public domain reference implementation.\n .\n Simon Josefsson\t\tPort of Arctwo, from GnuTLS and libgcrypt. New\n \t\t\tports of LGPL Serpent and Blowfish code, from\n \t\t\tlibgcrypt. Port of Salsa20, based on djb's\n \t\t\treference. Implementation of PBKDF2 (RFC\n \t\t\t2898).\n .\n Henrik Grubbstr\u00f6m\tAES assembly for Sparc64.\n .\n Magnus Holmgren\t\tConversion of DSA keys from DER format to SEXP\n \t\t\tformat.\n .\n Daniel Kahn Gillmor\tAdded the lists for nettle_get_ciphers,\n \t\t\tnettle_get_hashes and nettle_get_armors. Test\n \t\t\tvectors for hashes and hmac.\n .\n Nippon Telegraph and Telephone Corporation\n \t\t\tLGPL:ed reference implementation of the\n \t\t\tCamellia cipher.\n .\n Andrew M. (floodyberry)\n \t\t\tThe poly1305 code nettle's C implementation is\n \t\t\tderived from.\n .\n Aleksey Kravchenko\tThe gosthash94 implementation in rhash library.\n .\n Stefan Metzmacher, Jeremy Allison, Michael Adam\n \t\t\tContributed to the CMAC code, which was added\n \t\t\tto Nettle by Nikos Mavroyanopoulos.\n .\n Nikos Mavroyanopoulos\tGCM implementation, RSA blinding code,\n \t\t\tinterface for general rsa-pkcs1 signatures.\n \t\t\tPort of gosthash94 implementation from rhash. Port of\n \t\t\tpoly1305. Salsa20r12 variant. HKDF (RFC 5869)\n \t\t\timplementation. CMAC and SIV-CMAV\n \t\t\timplementation. CTR and GCM optimizations.\n \t\t\tImplementation of versioned symbols. Setup of\n \t\t\t.gitlab-ci.yml. Large number of smaller fixes.\n .\n Andres Mejia\t\tPorted Ripemd160 from libgcrypt.\n .\n Martin Storsj\u00f6\t\tImplemented m4 macrology to make x86_64\n \t\t\tassembly files work with the windows ABI.\n \t\t\tSeveral other portability improvements.\n .\n Jeronimo Pellegrini\tDocumentation for base16 and base64 functions.\n .\n Tim Ruehsen\t\tSeveral smaller cleanups and bugfixes.\n .\n Fredrik Thulin\t\tTest vectors for pbkdf2-hmac-sha512.\n .\n Joachim Str\u00f6mbergson\tChacha implementation. Support for sha512_224\n \t\t\tand sha512_256.\n .\n Owen Kirby\t\tImplementation of CCM mode.\n .\n Amos Jeffries\t\tImplementation of base64url encoding.\n .\n Daiki Ueno\t\tImplementation of RSA-PSS signatures,\n \t\t\tcurve448, shake256, ed448-shake256 signatures,\n \t\t\tchacha functions for 32-bit nonce, struct\n \t\t\tnettle_mac interface.\n .\n Dmitry Baryshkov\tCFB and CFB8 modes, CMAC64. gosthash94cp and\n \t\t\tStreebog hash functions, GOST DSA signatures\n \t\t\tand curves GC256B and GC512A. Various bug\n \t\t\tfixes and cleanups.\n .\n Simo Sorce\t\tSide-channel silent RSA functions. XTS\n \t\t\timplementation.\n .\n H.J. Lu\t\t\tAssembly annotations for Intel \"Control-flow\n \t\t\tEnforcement Technology\".\n .\n Stephen R. van den Berg\n \t\t\tPort of bcrypt.\n .\n Mamone Tarsha Kurdi\tPowerpc64 assembly and fat build setup,\n \t\t\tincluding AES and GCM. Arm64 assembly and fat\n \t\t\tbuild setup, including AES, Chacha, GCM, SHA1,\n \t\t\tSHA256. S390x assembly and fat build setup,\n \t\t\tincluding AES, Chacha, memxor, memxor3, SHA1,\n \t\t\tSHA256, SHA512, SHA3.\n .\n Nicolas Mora\t\tRFC 3394 keywrap.\n .\n Tianjia Zhang\t\tSM3 hash function.\n .\n Amitay Isaacs\t\tPowerpc64 assembly for secp192r1, secp224r1\n \t\t\tand secp256r1.\n .\n Martin Schwenke\t\tPowerpc64 assembly for secp384r1, secp521r1,\n \t\t\tcurve25519 and curve448.\n 8X--------- end of AUTHORS file ------------------------------------\n\nFiles: *\nCopyright: 2001-2022 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: aes-invert-internal.c aes-set-decrypt-key.c\n aes-set-encrypt-key.c aes-set-key-internal.c\nCopyright: 2013, Niels M\u00f6ller\n 2000-2002, Rafael R. Sevilla, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: x86*/aes-*-internal.asm\nCopyright: 2001, 2002, 2005 Rafael R. Sevilla, Niels M\u00f6ller\n 2008, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.c\nCopyright: 2003 Nikos Mavroyanopoulos\n 2004 Simon Josefsson\n 2004 Free Software Foundation, Inc.\n 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo-meta.c pbkdf2.c\n salsa20-128-set-key.c salsa20-256-set-key.c\n salsa20-core-internal.c\n salsa20-set-key.c salsa20-set-nonce.c\nCopyright: 2012-2014 Niels M\u00f6ller\n 2004, 2012 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.h\n salsa20-internal.h salsa20.h\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/chacha-2core.asm arm64/chacha-4core.asm\n arm64/chacha-core-internal.asm s390x/vf/chacha-2core.asm\n s390x/vf/chacha-4core.asm s390x/vf/chacha-core-internal.asm\nCopyright: 2020 Niels M\u00f6ller and Torbj\u00f6rn Granlund\n 2022 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/aes128-decrypt.asm arm64/crypto/aes128-encrypt.asm\n arm64/crypto/aes192-decrypt.asm arm64/crypto/aes192-encrypt.asm\n arm64/crypto/aes256-decrypt.asm arm64/crypto/aes256-encrypt.asm\n arm64/crypto/sha1-compress.asm arm64/crypto/sha256-compress.asm\n arm64/fat/aes128-decrypt-2.asm arm64/fat/aes128-encrypt-2.asm\n arm64/fat/aes192-decrypt-2.asm arm64/fat/aes192-encrypt-2.asm\n arm64/fat/aes256-decrypt-2.asm arm64/fat/aes256-encrypt-2.asm\n arm64/fat/ghash-set-key-2.asm arm64/fat/ghash-update-2.asm\n arm64/fat/sha1-compress-2.asm arm64/fat/sha256-compress-2.asm\n fat-arm64.c fat-s390x.c powerpc64/fat/ghash-set-key-2.asm\n powerpc64/fat/ghash-update-2.asm s390x/fat/aes128-decrypt-2.asm\n s390x/fat/aes128-encrypt-2.asm s390x/fat/aes128-set-decrypt-key-2.asm\n s390x/fat/aes128-set-encrypt-key-2.asm\n s390x/fat/aes192-decrypt-2.asm s390x/fat/aes192-encrypt-2.asm\n s390x/fat/aes192-set-decrypt-key-2.asm\n s390x/fat/aes192-set-encrypt-key-2.asm s390x/fat/aes256-decrypt-2.asm\n s390x/fat/aes256-encrypt-2.asm s390x/fat/aes256-set-decrypt-key-2.asm\n s390x/fat/aes256-set-encrypt-key-2.asm s390x/fat/chacha-2core.asm\n s390x/fat/chacha-4core.asm s390x/fat/chacha-core-internal-2.asm\n s390x/fat/cpu-facility.asm s390x/fat/ghash-set-key-2.asm\n s390x/fat/ghash-update-2.asm s390x/fat/memxor3-2.asm\n s390x/fat/sha1-compress-2.asm s390x/fat/sha256-compress-2.asm\n s390x/fat/sha3-permute-2.asm s390x/fat/sha512-compress-2.asm\n s390x/memxor.asm s390x/msa/sha1-compress.asm\n s390x/msa_x1/aes128-decrypt.asm s390x/msa_x1/aes128-encrypt.asm\n s390x/msa_x1/aes128-set-decrypt-key.asm\n s390x/msa_x1/aes128-set-encrypt-key.asm s390x/msa_x1/sha256-compress.asm\n s390x/msa_x2/aes192-decrypt.asm s390x/msa_x2/aes192-encrypt.asm\n s390x/msa_x2/aes192-set-decrypt-key.asm\n s390x/msa_x2/aes192-set-encrypt-key.asm s390x/msa_x2/aes256-decrypt.asm\n s390x/msa_x2/aes256-encrypt.asm s390x/msa_x2/aes256-set-decrypt-key.asm\n s390x/msa_x2/aes256-set-encrypt-key.asm s390x/msa_x2/sha512-compress.asm\n s390x/msa_x4/ghash-set-key.asm s390x/msa_x4/ghash-update.asm\n s390x/vf/memxor3.asm\nCopyright: 2020, 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/ghash-set-key.asm arm64/crypto/ghash-update.asm\n powerpc64/p8/ghash-set-key.asm powerpc64/p8/ghash-update.asm\nCopyright: 2020 Niels M\u00f6ller and Mamone Tarsha\n 2021 Michael Weiser\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64.h base64-meta.c\nCopyright: 2002 Dan Egnor, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64url-decode.c base64url-encode.c\nCopyright: 2015 Amos Jeffries, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: block-internal.h\nCopyright: 2019 Dmitry Eremin-Solenikov\n 2018 Red Hat, Inc.\n 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\n 2010 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.h\nCopyright: 1998, 2001 Free Software Foundation, Inc.\n 1998, 2001 Ray Dassen\n 1998, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: camellia-table.c camellia-crypt-internal.c camellia.h camellia-internal.h\n camellia128-set-encrypt-key.c camellia256-set-encrypt-key.c camellia-absorb.c\nCopyright: 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2010, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ccm.c ccm.h ccm-aes128.c\n ccm-aes192.c ccm-aes256.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cfb.c\n cfb.h\n ecc-gostdsa-sign.c\n ecc-gostdsa-verify.c\n gostdsa-sign.c\n gostdsa-verify.c\nCopyright: 2015, 2017 Dmitry Eremin-Solenikov\n 2001, 2011, 2013, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: chacha-core-internal.c chacha-crypt.c\n chacha-internal.h chacha.h chacha-set-nonce.c\nCopyright: 2012 Simon Josefsson\n 2013 Joachim Str\u00f6mbergson\n 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-aes128.c cmac-aes256.c\n cmac.h hkdf.c hkdf.h\n xts-aes128.c xts-aes256.c xts.c\nCopyright: 2017, 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3-meta.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3.c\n ecc-gost-gc256b.c ecc-gost-gc512a.c\n gost28147-internal.h gostdsa-vko.c\n hmac-gosthash94.c pbkdf2-hmac-gosthash94.c\nCopyright: 2016-2020 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac.c cmac64.c\nCopyright: 2012 Stefan Metzmacher, Michael Adam, Jeremy Allison\n 2017 Red Hat Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ctr16.c\n pkcs1-internal.h pkcs1-sec-decrypt.c\n version.h.in xts.h\nCopyright: 2015, 2017, 2018 Red Hat, Inc.\n 2001, 2002, 2005-2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: curve448-eh-to-x.c curve448.h\n curve448-mul-g.c curve448-mul.c\n ecc-curve448.c ed448-shake256-pubkey.c\n ed448-shake256-sign.c ed448-shake256-verify.c\n shake256.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: der2dsa.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: desCode.h descore.README desdata.c\nCopyright: \u00a9 2002 Dana L. How\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Library General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Library\n General Public License, version 2, can be found in\n /usr/share/common-licenses/LGPL-2.\n\nFiles: des.c des.h\nCopyright: 1992 Dana L. How\n 1997, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: dsa2sexp.c\nCopyright: 2002, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: eccdata.c eddsa-hash.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\n 2013, 2014, 2017, 2019 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ecc-secp192r1.c\nCopyright: 2013, 2014, 2019, 2021 Niels M\u00f6ller\n 2019 Wim Lewis\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/base16dec.c examples/base16enc.c\n examples/base64dec.c examples/base64enc.c\nCopyright: 2006, 2012, Jeronimo Pellegrini, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/nettle-openssl.c\nCopyright: 2015, 2017, 2018, Red Hat, Inc.\n 2001, 2002, 2005-2018, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gcm.c gcm.h ghash-set-key.c ghash-update.c\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018, 2022 Niels M\u00f6ller\n 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gmp-glue.c\n gmp-glue.h\nCopyright: 2013 Red Hat, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gost28147.c gosthash94.c\nCopyright: 2019 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: Expat\n\nFiles: gostdsa.h\nCopyright: 2015, Dmity Eremin-Solenikov\n 2013, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94-meta.c\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94.h\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-md5-meta.c hmac-ripemd160-meta.c\n hmac-sha1-meta.c hmac-sha224-meta.c\n hmac-sha256-meta.c hmac-sha384-meta.c\n hmac-sha512-meta.c nettle-meta-macs.c\n pss-mgf1.c pss-mgf1.h pss.c pss.h\n rsa-pss-sha256-sign-tr.c rsa-pss-sha256-verify.c\n rsa-pss-sha512-sign-tr.c rsa-pss-sha512-verify.c\nCopyright: 2017, 2020 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-sm3.c hmac-sm3-meta.c\nCopyright: 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md2.c\nCopyright: ? Andrew Kuchling\n 2003 Andreas Sigfridsson\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md4.c\nCopyright: 2003 Marcus Comstedt\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md5.c md5-compress.c\nCopyright: Colin Plumb, Andrew Kuchling\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: memxor.c\nCopyright: 1991,1993, 1995 Free Software Foundation, Inc.\n 2010 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nettle-meta-armors.c\n nettle-meta-ciphers.c\n nettle-meta-hashes.c\nCopyright: 2011 Daniel Kahn Gillmor\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nist-keywrap.c nist-keywrap.h\nCopyright: 2021 Nicolas Mora\n 2021 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha1.c\n pbkdf2-hmac-sha256.c\n pbkdf2.h\n salsa20-crypt.c\nCopyright: 2012, Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha384.c pbkdf2-hmac-sha512.c\nCopyright: 2012 Simon Josefsson\n 2021 Nicolas Mora\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-aes.c\nCopyright: 2014 Niels M\u00f6ller\n 2013 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.c\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013 Niels M\u00f6ller\n 2012, 2013 Andrew M. (floodyberry)\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.h\n poly1305.h\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013, 2014, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-curve25519-modp.asm powerpc64/ecc-curve448-modp.asm\n powerpc64/ecc-secp521r1-modp.asm\nCopyright: 2021 Martin Schwenke & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp192r1-modp.asm powerpc64/ecc-secp224r1-modp.asm\nCopyright: 2021 Amitay Isaacs, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp256r1-redc.asm\nCopyright: 2021 Amitay Isaacs & Martin Schwenke, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp384r1-modp.asm\nCopyright: 2021 Martin Schwenke, Amitay Isaacs & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160.c ripemd160-compress.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160-meta.c ripemd160.h ripemd160-internal.h\nCopyright: 2011 Andres Mejia\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-blind.c rsa-decrypt-tr.c\nCopyright: 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-pkcs1-sign-tr.c salsa20r12-crypt.c\n siv-cmac-aes128.c siv-cmac-aes256.c\n siv-cmac.c siv-cmac.h\nCopyright: 2012, 2013, 2017, 2018, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-compute-root.c\nCopyright: 2018 Red Hat, Inc\n 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-decrypt.c\nCopyright: 2018, Red Hat, Inc.\n 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sign-tr.c\nCopyright: 2018, Red Hat Inc.\n 2012, Nikos Mavrogiannopoulos\n 2001, 2015, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: s390x/vf/sha3-permute.asm\nCopyright: 2012 Niels M\u00f6ller\n 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c serpent-internal.h\nCopyright: 1998 Ross Anderson, Eli Biham, Lars Knudsen\n 2003, 2004, 2005 Free Software Foundation, Inc.\n 2010, 2011 Simon Josefsson\n 2011, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha1-compress.c\nCopyright: 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha512.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sm3.c sm3.h sm3-meta.c\nCopyright: 2017 Jia Zhang\n 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/arctwo-test.c\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/ccm-test.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/chacha-test.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/curve448-dh-test.c\n testsuite/ed448-test.c\n testsuite/shake256-test.c\nCopyright: 2017, Red Hat, Inc.\n 2017, Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/siv-test.c\nCopyright: 2012, 2013, 2017, 2018 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: texinfo.tex\nCopyright: 1985, 1986, 1988, 1990-2009, Free Software Foundation, Inc.\nLicense: GPL-3+\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nFiles: twofish*\nCopyright: 1999 Ruud de Rooij <ruud at debian.org>\n 1999 J.H.M. Dassen (Ray) <jdassen at wi.LeidenUniv.nl>\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: tools/pkcs1-conv.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: getopt*\nCopyright: 1987-2001 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: config.guess config.sub\nCopyright: \u00a9 1992-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf exception\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program.\n\nFiles: debian/*\nCopyright: none\nLicense: public-domain\n I believe that most files in debian/ hardly contains any creative\n expression eligible for copyright.\n\nFiles: debian/sexp-conv.1\nCopyright: 2002 Timshel Knoll <timshel at debian.org>\n 2007 Magnus Holmgren\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June. 1991.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License, version 2, can be found in\n /usr/share/common-licenses/GPL-2.\nComment:\n This manpage was copied from the lsh-utils package. Timshel didn't\n explicitly select a license for his packaging work, but I think that\n it can be considered released under the same license as LSH itself.\n\nFiles: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1\nCopyright: 2007 Magnus Holmgren\nLicense: GAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved.\n\nLicense: LGPL-3+\n The nettle library is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\n License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, see http://www.gnu.org/licenses/.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU Lesser General Public License can be found in\n /usr/share/common-licenses/LGPL.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU General Public License can be found in\n /usr/share/common-licenses/GPL.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Autoconf exception"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GAP",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Nettle\nUpstream-Contact: Niels M\u00f6ller <nisse at lysator.liu.se>\nSource: http://www.lysator.liu.se/~nisse/nettle/\nCopyright: \u00a9 2001-2020 Niels M\u00f6ller\n Some parts are Copyright \u00a9 the Free Software Foundation and various\n people. See below and source code comments for details.\nLicense: LGPL-3+ or GPL-2+\nComment:\n Nettle is dual licenced under the GNU General Public License version\n 2 or later, and the GNU Lesser General Public License version 3 or\n later. When using Nettle, you must comply fully with all conditions\n of at least one of these licenses. A few of the individual files are\n licensed under more permissive terms, or in the public domain. To\n find the current status of particular files, you have to read the\n copyright notices at the top of the files.\n .\n 8X--------- AUTHORS file -----------------------------------------\n Authors of GNU Nettle\n .\n The oldest code in Nettle was copied into precursors of the Nettle\n library from other public domain or LGPLv2 sources.\n .\n Steve Reid\t\tOriginal CAST128 implementation\n Dana L. How\t\tOriginal DES implementation,\n Colin Plumb\t\tOriginal MD5 implementation\n Peter Gutmann\t\tOriginal SHA1 implementation\n Andrew Kuchling\t\tOriginal MD2 implementation\n .\n Free Software Foundation\n \t\t\tHolds copyrights on code ported from\n \t\t\tlibgcrypt, written by Werner Koch and others.\n .\n J.H.M. Dassen\t\tOriginal port of blowfish to GNU lsh, later\n \t\t\tsplit off into Nettle. (This blowfish\n \t\t\timplementation was replaced later).\n \t\t\tTwofish tests.\n .\n Ruud de Rooij\t\tTwofish implementation for GNU lsh, later split off into Nettle.\n .\n Rafael Sevilla\t\tAES C and x86 implementation, original port of\n \t\t\tSerpent, for GNU lsh, later split off into Nettle.\n .\n Authors of Nettle (in roughly chronological order of initial contribution)\n .\n Niels M\u00f6ller\t\tMain author.\n .\n Dan Egnor\t\tBase64 conversion.\n .\n Andreas Sigfridsson\tPort of MD2, from Andrew Kuchling's python\n \t\t\tcryptography toolkit.\n .\n Marcus Comstedt\t\tImplemented MD4.\n .\n D. J. Bernstein\t\tSalsa20 public domain reference implementation.\n .\n Simon Josefsson\t\tPort of Arctwo, from GnuTLS and libgcrypt. New\n \t\t\tports of LGPL Serpent and Blowfish code, from\n \t\t\tlibgcrypt. Port of Salsa20, based on djb's\n \t\t\treference. Implementation of PBKDF2 (RFC\n \t\t\t2898).\n .\n Henrik Grubbstr\u00f6m\tAES assembly for Sparc64.\n .\n Magnus Holmgren\t\tConversion of DSA keys from DER format to SEXP\n \t\t\tformat.\n .\n Daniel Kahn Gillmor\tAdded the lists for nettle_get_ciphers,\n \t\t\tnettle_get_hashes and nettle_get_armors. Test\n \t\t\tvectors for hashes and hmac.\n .\n Nippon Telegraph and Telephone Corporation\n \t\t\tLGPL:ed reference implementation of the\n \t\t\tCamellia cipher.\n .\n Andrew M. (floodyberry)\n \t\t\tThe poly1305 code nettle's C implementation is\n \t\t\tderived from.\n .\n Aleksey Kravchenko\tThe gosthash94 implementation in rhash library.\n .\n Stefan Metzmacher, Jeremy Allison, Michael Adam\n \t\t\tContributed to the CMAC code, which was added\n \t\t\tto Nettle by Nikos Mavroyanopoulos.\n .\n Nikos Mavroyanopoulos\tGCM implementation, RSA blinding code,\n \t\t\tinterface for general rsa-pkcs1 signatures.\n \t\t\tPort of gosthash94 implementation from rhash. Port of\n \t\t\tpoly1305. Salsa20r12 variant. HKDF (RFC 5869)\n \t\t\timplementation. CMAC and SIV-CMAV\n \t\t\timplementation. CTR and GCM optimizations.\n \t\t\tImplementation of versioned symbols. Setup of\n \t\t\t.gitlab-ci.yml. Large number of smaller fixes.\n .\n Andres Mejia\t\tPorted Ripemd160 from libgcrypt.\n .\n Martin Storsj\u00f6\t\tImplemented m4 macrology to make x86_64\n \t\t\tassembly files work with the windows ABI.\n \t\t\tSeveral other portability improvements.\n .\n Jeronimo Pellegrini\tDocumentation for base16 and base64 functions.\n .\n Tim Ruehsen\t\tSeveral smaller cleanups and bugfixes.\n .\n Fredrik Thulin\t\tTest vectors for pbkdf2-hmac-sha512.\n .\n Joachim Str\u00f6mbergson\tChacha implementation. Support for sha512_224\n \t\t\tand sha512_256.\n .\n Owen Kirby\t\tImplementation of CCM mode.\n .\n Amos Jeffries\t\tImplementation of base64url encoding.\n .\n Daiki Ueno\t\tImplementation of RSA-PSS signatures,\n \t\t\tcurve448, shake256, ed448-shake256 signatures,\n \t\t\tchacha functions for 32-bit nonce, struct\n \t\t\tnettle_mac interface.\n .\n Dmitry Baryshkov\tCFB and CFB8 modes, CMAC64. gosthash94cp and\n \t\t\tStreebog hash functions, GOST DSA signatures\n \t\t\tand curves GC256B and GC512A. Various bug\n \t\t\tfixes and cleanups.\n .\n Simo Sorce\t\tSide-channel silent RSA functions. XTS\n \t\t\timplementation.\n .\n H.J. Lu\t\t\tAssembly annotations for Intel \"Control-flow\n \t\t\tEnforcement Technology\".\n .\n Stephen R. van den Berg\n \t\t\tPort of bcrypt.\n .\n Mamone Tarsha Kurdi\tPowerpc64 assembly and fat build setup,\n \t\t\tincluding AES and GCM. Arm64 assembly and fat\n \t\t\tbuild setup, including AES, Chacha, GCM, SHA1,\n \t\t\tSHA256. S390x assembly and fat build setup,\n \t\t\tincluding AES, Chacha, memxor, memxor3, SHA1,\n \t\t\tSHA256, SHA512, SHA3.\n .\n Nicolas Mora\t\tRFC 3394 keywrap.\n .\n Tianjia Zhang\t\tSM3 hash function.\n .\n Amitay Isaacs\t\tPowerpc64 assembly for secp192r1, secp224r1\n \t\t\tand secp256r1.\n .\n Martin Schwenke\t\tPowerpc64 assembly for secp384r1, secp521r1,\n \t\t\tcurve25519 and curve448.\n 8X--------- end of AUTHORS file ------------------------------------\n\nFiles: *\nCopyright: 2001-2022 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: aes-invert-internal.c aes-set-decrypt-key.c\n aes-set-encrypt-key.c aes-set-key-internal.c\nCopyright: 2013, Niels M\u00f6ller\n 2000-2002, Rafael R. Sevilla, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: x86*/aes-*-internal.asm\nCopyright: 2001, 2002, 2005 Rafael R. Sevilla, Niels M\u00f6ller\n 2008, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.c\nCopyright: 2003 Nikos Mavroyanopoulos\n 2004 Simon Josefsson\n 2004 Free Software Foundation, Inc.\n 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo-meta.c pbkdf2.c\n salsa20-128-set-key.c salsa20-256-set-key.c\n salsa20-core-internal.c\n salsa20-set-key.c salsa20-set-nonce.c\nCopyright: 2012-2014 Niels M\u00f6ller\n 2004, 2012 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.h\n salsa20-internal.h salsa20.h\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/chacha-2core.asm arm64/chacha-4core.asm\n arm64/chacha-core-internal.asm s390x/vf/chacha-2core.asm\n s390x/vf/chacha-4core.asm s390x/vf/chacha-core-internal.asm\nCopyright: 2020 Niels M\u00f6ller and Torbj\u00f6rn Granlund\n 2022 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/aes128-decrypt.asm arm64/crypto/aes128-encrypt.asm\n arm64/crypto/aes192-decrypt.asm arm64/crypto/aes192-encrypt.asm\n arm64/crypto/aes256-decrypt.asm arm64/crypto/aes256-encrypt.asm\n arm64/crypto/sha1-compress.asm arm64/crypto/sha256-compress.asm\n arm64/fat/aes128-decrypt-2.asm arm64/fat/aes128-encrypt-2.asm\n arm64/fat/aes192-decrypt-2.asm arm64/fat/aes192-encrypt-2.asm\n arm64/fat/aes256-decrypt-2.asm arm64/fat/aes256-encrypt-2.asm\n arm64/fat/ghash-set-key-2.asm arm64/fat/ghash-update-2.asm\n arm64/fat/sha1-compress-2.asm arm64/fat/sha256-compress-2.asm\n fat-arm64.c fat-s390x.c powerpc64/fat/ghash-set-key-2.asm\n powerpc64/fat/ghash-update-2.asm s390x/fat/aes128-decrypt-2.asm\n s390x/fat/aes128-encrypt-2.asm s390x/fat/aes128-set-decrypt-key-2.asm\n s390x/fat/aes128-set-encrypt-key-2.asm\n s390x/fat/aes192-decrypt-2.asm s390x/fat/aes192-encrypt-2.asm\n s390x/fat/aes192-set-decrypt-key-2.asm\n s390x/fat/aes192-set-encrypt-key-2.asm s390x/fat/aes256-decrypt-2.asm\n s390x/fat/aes256-encrypt-2.asm s390x/fat/aes256-set-decrypt-key-2.asm\n s390x/fat/aes256-set-encrypt-key-2.asm s390x/fat/chacha-2core.asm\n s390x/fat/chacha-4core.asm s390x/fat/chacha-core-internal-2.asm\n s390x/fat/cpu-facility.asm s390x/fat/ghash-set-key-2.asm\n s390x/fat/ghash-update-2.asm s390x/fat/memxor3-2.asm\n s390x/fat/sha1-compress-2.asm s390x/fat/sha256-compress-2.asm\n s390x/fat/sha3-permute-2.asm s390x/fat/sha512-compress-2.asm\n s390x/memxor.asm s390x/msa/sha1-compress.asm\n s390x/msa_x1/aes128-decrypt.asm s390x/msa_x1/aes128-encrypt.asm\n s390x/msa_x1/aes128-set-decrypt-key.asm\n s390x/msa_x1/aes128-set-encrypt-key.asm s390x/msa_x1/sha256-compress.asm\n s390x/msa_x2/aes192-decrypt.asm s390x/msa_x2/aes192-encrypt.asm\n s390x/msa_x2/aes192-set-decrypt-key.asm\n s390x/msa_x2/aes192-set-encrypt-key.asm s390x/msa_x2/aes256-decrypt.asm\n s390x/msa_x2/aes256-encrypt.asm s390x/msa_x2/aes256-set-decrypt-key.asm\n s390x/msa_x2/aes256-set-encrypt-key.asm s390x/msa_x2/sha512-compress.asm\n s390x/msa_x4/ghash-set-key.asm s390x/msa_x4/ghash-update.asm\n s390x/vf/memxor3.asm\nCopyright: 2020, 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/ghash-set-key.asm arm64/crypto/ghash-update.asm\n powerpc64/p8/ghash-set-key.asm powerpc64/p8/ghash-update.asm\nCopyright: 2020 Niels M\u00f6ller and Mamone Tarsha\n 2021 Michael Weiser\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64.h base64-meta.c\nCopyright: 2002 Dan Egnor, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64url-decode.c base64url-encode.c\nCopyright: 2015 Amos Jeffries, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: block-internal.h\nCopyright: 2019 Dmitry Eremin-Solenikov\n 2018 Red Hat, Inc.\n 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\n 2010 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.h\nCopyright: 1998, 2001 Free Software Foundation, Inc.\n 1998, 2001 Ray Dassen\n 1998, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: camellia-table.c camellia-crypt-internal.c camellia.h camellia-internal.h\n camellia128-set-encrypt-key.c camellia256-set-encrypt-key.c camellia-absorb.c\nCopyright: 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2010, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ccm.c ccm.h ccm-aes128.c\n ccm-aes192.c ccm-aes256.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cfb.c\n cfb.h\n ecc-gostdsa-sign.c\n ecc-gostdsa-verify.c\n gostdsa-sign.c\n gostdsa-verify.c\nCopyright: 2015, 2017 Dmitry Eremin-Solenikov\n 2001, 2011, 2013, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: chacha-core-internal.c chacha-crypt.c\n chacha-internal.h chacha.h chacha-set-nonce.c\nCopyright: 2012 Simon Josefsson\n 2013 Joachim Str\u00f6mbergson\n 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-aes128.c cmac-aes256.c\n cmac.h hkdf.c hkdf.h\n xts-aes128.c xts-aes256.c xts.c\nCopyright: 2017, 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3-meta.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3.c\n ecc-gost-gc256b.c ecc-gost-gc512a.c\n gost28147-internal.h gostdsa-vko.c\n hmac-gosthash94.c pbkdf2-hmac-gosthash94.c\nCopyright: 2016-2020 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac.c cmac64.c\nCopyright: 2012 Stefan Metzmacher, Michael Adam, Jeremy Allison\n 2017 Red Hat Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ctr16.c\n pkcs1-internal.h pkcs1-sec-decrypt.c\n version.h.in xts.h\nCopyright: 2015, 2017, 2018 Red Hat, Inc.\n 2001, 2002, 2005-2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: curve448-eh-to-x.c curve448.h\n curve448-mul-g.c curve448-mul.c\n ecc-curve448.c ed448-shake256-pubkey.c\n ed448-shake256-sign.c ed448-shake256-verify.c\n shake256.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: der2dsa.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: desCode.h descore.README desdata.c\nCopyright: \u00a9 2002 Dana L. How\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Library General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Library\n General Public License, version 2, can be found in\n /usr/share/common-licenses/LGPL-2.\n\nFiles: des.c des.h\nCopyright: 1992 Dana L. How\n 1997, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: dsa2sexp.c\nCopyright: 2002, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: eccdata.c eddsa-hash.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\n 2013, 2014, 2017, 2019 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ecc-secp192r1.c\nCopyright: 2013, 2014, 2019, 2021 Niels M\u00f6ller\n 2019 Wim Lewis\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/base16dec.c examples/base16enc.c\n examples/base64dec.c examples/base64enc.c\nCopyright: 2006, 2012, Jeronimo Pellegrini, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/nettle-openssl.c\nCopyright: 2015, 2017, 2018, Red Hat, Inc.\n 2001, 2002, 2005-2018, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gcm.c gcm.h ghash-set-key.c ghash-update.c\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018, 2022 Niels M\u00f6ller\n 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gmp-glue.c\n gmp-glue.h\nCopyright: 2013 Red Hat, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gost28147.c gosthash94.c\nCopyright: 2019 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: Expat\n\nFiles: gostdsa.h\nCopyright: 2015, Dmity Eremin-Solenikov\n 2013, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94-meta.c\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94.h\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-md5-meta.c hmac-ripemd160-meta.c\n hmac-sha1-meta.c hmac-sha224-meta.c\n hmac-sha256-meta.c hmac-sha384-meta.c\n hmac-sha512-meta.c nettle-meta-macs.c\n pss-mgf1.c pss-mgf1.h pss.c pss.h\n rsa-pss-sha256-sign-tr.c rsa-pss-sha256-verify.c\n rsa-pss-sha512-sign-tr.c rsa-pss-sha512-verify.c\nCopyright: 2017, 2020 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-sm3.c hmac-sm3-meta.c\nCopyright: 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md2.c\nCopyright: ? Andrew Kuchling\n 2003 Andreas Sigfridsson\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md4.c\nCopyright: 2003 Marcus Comstedt\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md5.c md5-compress.c\nCopyright: Colin Plumb, Andrew Kuchling\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: memxor.c\nCopyright: 1991,1993, 1995 Free Software Foundation, Inc.\n 2010 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nettle-meta-armors.c\n nettle-meta-ciphers.c\n nettle-meta-hashes.c\nCopyright: 2011 Daniel Kahn Gillmor\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nist-keywrap.c nist-keywrap.h\nCopyright: 2021 Nicolas Mora\n 2021 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha1.c\n pbkdf2-hmac-sha256.c\n pbkdf2.h\n salsa20-crypt.c\nCopyright: 2012, Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha384.c pbkdf2-hmac-sha512.c\nCopyright: 2012 Simon Josefsson\n 2021 Nicolas Mora\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-aes.c\nCopyright: 2014 Niels M\u00f6ller\n 2013 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.c\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013 Niels M\u00f6ller\n 2012, 2013 Andrew M. (floodyberry)\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.h\n poly1305.h\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013, 2014, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-curve25519-modp.asm powerpc64/ecc-curve448-modp.asm\n powerpc64/ecc-secp521r1-modp.asm\nCopyright: 2021 Martin Schwenke & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp192r1-modp.asm powerpc64/ecc-secp224r1-modp.asm\nCopyright: 2021 Amitay Isaacs, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp256r1-redc.asm\nCopyright: 2021 Amitay Isaacs & Martin Schwenke, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp384r1-modp.asm\nCopyright: 2021 Martin Schwenke, Amitay Isaacs & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160.c ripemd160-compress.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160-meta.c ripemd160.h ripemd160-internal.h\nCopyright: 2011 Andres Mejia\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-blind.c rsa-decrypt-tr.c\nCopyright: 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-pkcs1-sign-tr.c salsa20r12-crypt.c\n siv-cmac-aes128.c siv-cmac-aes256.c\n siv-cmac.c siv-cmac.h\nCopyright: 2012, 2013, 2017, 2018, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-compute-root.c\nCopyright: 2018 Red Hat, Inc\n 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-decrypt.c\nCopyright: 2018, Red Hat, Inc.\n 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sign-tr.c\nCopyright: 2018, Red Hat Inc.\n 2012, Nikos Mavrogiannopoulos\n 2001, 2015, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: s390x/vf/sha3-permute.asm\nCopyright: 2012 Niels M\u00f6ller\n 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c serpent-internal.h\nCopyright: 1998 Ross Anderson, Eli Biham, Lars Knudsen\n 2003, 2004, 2005 Free Software Foundation, Inc.\n 2010, 2011 Simon Josefsson\n 2011, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha1-compress.c\nCopyright: 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha512.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sm3.c sm3.h sm3-meta.c\nCopyright: 2017 Jia Zhang\n 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/arctwo-test.c\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/ccm-test.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/chacha-test.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/curve448-dh-test.c\n testsuite/ed448-test.c\n testsuite/shake256-test.c\nCopyright: 2017, Red Hat, Inc.\n 2017, Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/siv-test.c\nCopyright: 2012, 2013, 2017, 2018 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: texinfo.tex\nCopyright: 1985, 1986, 1988, 1990-2009, Free Software Foundation, Inc.\nLicense: GPL-3+\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nFiles: twofish*\nCopyright: 1999 Ruud de Rooij <ruud at debian.org>\n 1999 J.H.M. Dassen (Ray) <jdassen at wi.LeidenUniv.nl>\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: tools/pkcs1-conv.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: getopt*\nCopyright: 1987-2001 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: config.guess config.sub\nCopyright: \u00a9 1992-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf exception\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program.\n\nFiles: debian/*\nCopyright: none\nLicense: public-domain\n I believe that most files in debian/ hardly contains any creative\n expression eligible for copyright.\n\nFiles: debian/sexp-conv.1\nCopyright: 2002 Timshel Knoll <timshel at debian.org>\n 2007 Magnus Holmgren\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June. 1991.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License, version 2, can be found in\n /usr/share/common-licenses/GPL-2.\nComment:\n This manpage was copied from the lsh-utils package. Timshel didn't\n explicitly select a license for his packaging work, but I think that\n it can be considered released under the same license as LSH itself.\n\nFiles: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1\nCopyright: 2007 Magnus Holmgren\nLicense: GAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved.\n\nLicense: LGPL-3+\n The nettle library is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\n License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, see http://www.gnu.org/licenses/.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU Lesser General Public License can be found in\n /usr/share/common-licenses/LGPL.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU General Public License can be found in\n /usr/share/common-licenses/GPL.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libnettle8 at 3.8.1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1442,6 +4028,18 @@
"content": "4b0eca370e8e65268a0a7917dd82a2d615ef5ae7cba1032db6b51f998cfb25d5"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libnewt0.52 at 0.52.23-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1458,6 +4056,23 @@
"content": "3a8223f9bfba99d97bf25296ac83de307ab036e1df63e5965f88809266851947"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC-BY-SA-4.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libnftables1 at 1.0.6-2+deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1474,6 +4089,18 @@
"content": "9e619e1470a1915264e906020f3bfc046fd8458043b1342686d997b5078213af"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libnftnl11 at 1.2.4-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1490,6 +4117,52 @@
"content": "251330faddbf013f060fcdb41f4b0c037c8a6e89ba7c09b04bfcc4e3f0807b22"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "permissive-like-automake-output",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: p11-kit\nSource: https://p11-glue.github.io/p11-glue/p11-kit.html\n\nFiles: *\nCopyright: 2011 Collabora Ltd.\n 2004, 2005, 2007, 2008, 2012, 2013 Stefan Walter\n 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Red Hat, Inc.\n 2012, 2013 Redhat Inc.\nLicense: BSD-3-Clause\n\nFiles: common/pkcs11.h\nCopyright: 2006, 2007 g10 Code GmbH\n 2006 Andreas Jellinghaus\n Copyright 2017 Red Hat, Inc.\nLicense: permissive-like-automake-output\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. */\n\nFiles: common/vsock.c common/vsock.h\nCopyright: 2020 Amazon.com, Inc. or its affiliates.\nLicense: BSD-3-Clause\n\n\nFiles: p11-kit/server.c\n common/unix-peer.h\nCopyright: 2014 Red Hat Inc.\nLicense: BSD-3-Clause\nComment: make_private_security_descriptor() and the helper functions were\n * copied from putty/windows/winsecur.c in the PuTTY source code as of\n * git commit 12bd5a6c722152aa27f24598785593e72b3284ea.\n *\n * PuTTY is copyright 1997-2017 Simon Tatham.\n *\n * Portions copyright Robert de Bath, Joris van Rantwijk, Delian\n * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\n * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus\n * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A.\n *\n * Permission is hereby granted, free of charge, to any person\n * obtaining a copy of this software and associated documentation files\n * (the \"Software\"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge,\n * publish, distribute, sublicense, and/or sell copies of the Software,\n * and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n\nFiles: trust/digest.c common/hash.c\nCopyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. (\"ISC\")\n 2000, 2001, 2003 Internet Software Consortium.\nLicense: ISC\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES WITH\n REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\n OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THIS SOFTWARE.\n\n\nFiles: trust/base64.c trust/base64.h\nCopyright: 1996, 1998 by Internet Software Consortium\n Portions Copyright (c) 1995 by International Business Machines, Inc.\nLicense: ISC+IBM\n Copyright (c) 1996, 1998 by Internet Software Consortium.\n .\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n .\n .\n Portions Copyright (c) 1995 by International Business Machines, Inc.\n .\n International Business Machines, Inc. (hereinafter called IBM) grants\n permission under its copyrights to use, copy, modify, and distribute this\n Software with or without fee, provided that the above copyright notice and\n all paragraphs of this notice appear in all copies, and that the name of IBM\n not be used in connection with the marketing of any product incorporating\n the Software or modifications thereof, without specific, written prior\n permission.\n .\n To the extent it has a right to do so, IBM grants an immunity from suit\n under its patents, if any, for the use, sale or manufacture of products to\n the extent that such products are used for performing Domain Name System\n dynamic updates in TCP/IP networks by means of the Software. No immunity is\n granted for any product per se or for any other function of any product.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", AND IBM DISCLAIMS ALL WARRANTIES,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,\n DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING\n OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN\n IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nFiles: common/compat.c\nCopyright: Copyright (c) 2011 Collabora Ltd.\n Portions of this file are covered by the following copyright:\n Copyright (c) 2001 Mike Barcroft <mike at FreeBSD.org>\n Copyright (c) 1990, 1993\n Copyright (c) 1987, 1993\n The Regents of the University of California.\nComment: This code is derived from software contributed to Berkeley by\n Chris Torek.\nLicense: BSD-3-Clause\n\n\nFiles: common/unix-peer.c\nCopyright: 2013 Nikos Mavrogiannopoulos\nLicense: BSD-3-Clause\n\nFiles: common/frob-getprogname.c\nCopyright: 2020 Red Hat Inc.\nLicense: BSD-3-Clause\n\nFiles: p11-kit/mock-module-ep8.c\nCopyright: 2012 Stefan Walter\n 2020 Red Hat, Inc.\nLicense: BSD-3-Clause\n\nFiles: fuzz/main.c\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: LGPL-2.1+\n\nFiles: fuzz/rpc_fuzzer.c\nCopyright: 2016 Google Inc\nLicense: Apache-2.0\n\nFiles: debian/*\nCopyright: 2011 Chris Coulson <chris.coulson at canonical.com>\n 2011-2022 Andreas Metzler <ametzler at debian.org>\nLicense: BSD-3-Clause\n\n\nFiles: po/de.po\nCopyright: 2011 Chris Leick\nComment: This file is distributed under the same license as the\n debian files of the p11-kit package.\nLicense: BSD-3-Clause\n\nFiles: po/fi.po\nCopyright: 2012 Rosetta Contributors and Canonical Ltd 2012\n Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012\n Timo Jyrinki <timo.jyrinki at iki.fi>, 2012\nLicense: same-as-rest-of-p11kit\n This file is distributed under the same license as the p11-kit\n package.\n\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n On Debian systems a copy of the LGPL 2.1 license can be found in\n /usr/share/common-licenses/LGPL-2.1\n\nLicense: Apache-2.0\n On Debian systems a copy of the Apache 2.0 license can be found in\n /usr/share/common-licenses/Apache-2.0\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "ISC+IBM",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: p11-kit\nSource: https://p11-glue.github.io/p11-glue/p11-kit.html\n\nFiles: *\nCopyright: 2011 Collabora Ltd.\n 2004, 2005, 2007, 2008, 2012, 2013 Stefan Walter\n 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Red Hat, Inc.\n 2012, 2013 Redhat Inc.\nLicense: BSD-3-Clause\n\nFiles: common/pkcs11.h\nCopyright: 2006, 2007 g10 Code GmbH\n 2006 Andreas Jellinghaus\n Copyright 2017 Red Hat, Inc.\nLicense: permissive-like-automake-output\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. */\n\nFiles: common/vsock.c common/vsock.h\nCopyright: 2020 Amazon.com, Inc. or its affiliates.\nLicense: BSD-3-Clause\n\n\nFiles: p11-kit/server.c\n common/unix-peer.h\nCopyright: 2014 Red Hat Inc.\nLicense: BSD-3-Clause\nComment: make_private_security_descriptor() and the helper functions were\n * copied from putty/windows/winsecur.c in the PuTTY source code as of\n * git commit 12bd5a6c722152aa27f24598785593e72b3284ea.\n *\n * PuTTY is copyright 1997-2017 Simon Tatham.\n *\n * Portions copyright Robert de Bath, Joris van Rantwijk, Delian\n * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\n * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus\n * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A.\n *\n * Permission is hereby granted, free of charge, to any person\n * obtaining a copy of this software and associated documentation files\n * (the \"Software\"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge,\n * publish, distribute, sublicense, and/or sell copies of the Software,\n * and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n\nFiles: trust/digest.c common/hash.c\nCopyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. (\"ISC\")\n 2000, 2001, 2003 Internet Software Consortium.\nLicense: ISC\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES WITH\n REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\n OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THIS SOFTWARE.\n\n\nFiles: trust/base64.c trust/base64.h\nCopyright: 1996, 1998 by Internet Software Consortium\n Portions Copyright (c) 1995 by International Business Machines, Inc.\nLicense: ISC+IBM\n Copyright (c) 1996, 1998 by Internet Software Consortium.\n .\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n .\n .\n Portions Copyright (c) 1995 by International Business Machines, Inc.\n .\n International Business Machines, Inc. (hereinafter called IBM) grants\n permission under its copyrights to use, copy, modify, and distribute this\n Software with or without fee, provided that the above copyright notice and\n all paragraphs of this notice appear in all copies, and that the name of IBM\n not be used in connection with the marketing of any product incorporating\n the Software or modifications thereof, without specific, written prior\n permission.\n .\n To the extent it has a right to do so, IBM grants an immunity from suit\n under its patents, if any, for the use, sale or manufacture of products to\n the extent that such products are used for performing Domain Name System\n dynamic updates in TCP/IP networks by means of the Software. No immunity is\n granted for any product per se or for any other function of any product.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", AND IBM DISCLAIMS ALL WARRANTIES,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,\n DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING\n OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN\n IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nFiles: common/compat.c\nCopyright: Copyright (c) 2011 Collabora Ltd.\n Portions of this file are covered by the following copyright:\n Copyright (c) 2001 Mike Barcroft <mike at FreeBSD.org>\n Copyright (c) 1990, 1993\n Copyright (c) 1987, 1993\n The Regents of the University of California.\nComment: This code is derived from software contributed to Berkeley by\n Chris Torek.\nLicense: BSD-3-Clause\n\n\nFiles: common/unix-peer.c\nCopyright: 2013 Nikos Mavrogiannopoulos\nLicense: BSD-3-Clause\n\nFiles: common/frob-getprogname.c\nCopyright: 2020 Red Hat Inc.\nLicense: BSD-3-Clause\n\nFiles: p11-kit/mock-module-ep8.c\nCopyright: 2012 Stefan Walter\n 2020 Red Hat, Inc.\nLicense: BSD-3-Clause\n\nFiles: fuzz/main.c\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: LGPL-2.1+\n\nFiles: fuzz/rpc_fuzzer.c\nCopyright: 2016 Google Inc\nLicense: Apache-2.0\n\nFiles: debian/*\nCopyright: 2011 Chris Coulson <chris.coulson at canonical.com>\n 2011-2022 Andreas Metzler <ametzler at debian.org>\nLicense: BSD-3-Clause\n\n\nFiles: po/de.po\nCopyright: 2011 Chris Leick\nComment: This file is distributed under the same license as the\n debian files of the p11-kit package.\nLicense: BSD-3-Clause\n\nFiles: po/fi.po\nCopyright: 2012 Rosetta Contributors and Canonical Ltd 2012\n Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012\n Timo Jyrinki <timo.jyrinki at iki.fi>, 2012\nLicense: same-as-rest-of-p11kit\n This file is distributed under the same license as the p11-kit\n package.\n\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n On Debian systems a copy of the LGPL 2.1 license can be found in\n /usr/share/common-licenses/LGPL-2.1\n\nLicense: Apache-2.0\n On Debian systems a copy of the Apache 2.0 license can be found in\n /usr/share/common-licenses/Apache-2.0\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ },
+ {
+ "license": {
+ "name": "same-as-rest-of-p11kit",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: p11-kit\nSource: https://p11-glue.github.io/p11-glue/p11-kit.html\n\nFiles: *\nCopyright: 2011 Collabora Ltd.\n 2004, 2005, 2007, 2008, 2012, 2013 Stefan Walter\n 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Red Hat, Inc.\n 2012, 2013 Redhat Inc.\nLicense: BSD-3-Clause\n\nFiles: common/pkcs11.h\nCopyright: 2006, 2007 g10 Code GmbH\n 2006 Andreas Jellinghaus\n Copyright 2017 Red Hat, Inc.\nLicense: permissive-like-automake-output\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. */\n\nFiles: common/vsock.c common/vsock.h\nCopyright: 2020 Amazon.com, Inc. or its affiliates.\nLicense: BSD-3-Clause\n\n\nFiles: p11-kit/server.c\n common/unix-peer.h\nCopyright: 2014 Red Hat Inc.\nLicense: BSD-3-Clause\nComment: make_private_security_descriptor() and the helper functions were\n * copied from putty/windows/winsecur.c in the PuTTY source code as of\n * git commit 12bd5a6c722152aa27f24598785593e72b3284ea.\n *\n * PuTTY is copyright 1997-2017 Simon Tatham.\n *\n * Portions copyright Robert de Bath, Joris van Rantwijk, Delian\n * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\n * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus\n * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A.\n *\n * Permission is hereby granted, free of charge, to any person\n * obtaining a copy of this software and associated documentation files\n * (the \"Software\"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge,\n * publish, distribute, sublicense, and/or sell copies of the Software,\n * and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n\nFiles: trust/digest.c common/hash.c\nCopyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. (\"ISC\")\n 2000, 2001, 2003 Internet Software Consortium.\nLicense: ISC\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES WITH\n REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\n OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THIS SOFTWARE.\n\n\nFiles: trust/base64.c trust/base64.h\nCopyright: 1996, 1998 by Internet Software Consortium\n Portions Copyright (c) 1995 by International Business Machines, Inc.\nLicense: ISC+IBM\n Copyright (c) 1996, 1998 by Internet Software Consortium.\n .\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n .\n .\n Portions Copyright (c) 1995 by International Business Machines, Inc.\n .\n International Business Machines, Inc. (hereinafter called IBM) grants\n permission under its copyrights to use, copy, modify, and distribute this\n Software with or without fee, provided that the above copyright notice and\n all paragraphs of this notice appear in all copies, and that the name of IBM\n not be used in connection with the marketing of any product incorporating\n the Software or modifications thereof, without specific, written prior\n permission.\n .\n To the extent it has a right to do so, IBM grants an immunity from suit\n under its patents, if any, for the use, sale or manufacture of products to\n the extent that such products are used for performing Domain Name System\n dynamic updates in TCP/IP networks by means of the Software. No immunity is\n granted for any product per se or for any other function of any product.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", AND IBM DISCLAIMS ALL WARRANTIES,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,\n DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING\n OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN\n IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nFiles: common/compat.c\nCopyright: Copyright (c) 2011 Collabora Ltd.\n Portions of this file are covered by the following copyright:\n Copyright (c) 2001 Mike Barcroft <mike at FreeBSD.org>\n Copyright (c) 1990, 1993\n Copyright (c) 1987, 1993\n The Regents of the University of California.\nComment: This code is derived from software contributed to Berkeley by\n Chris Torek.\nLicense: BSD-3-Clause\n\n\nFiles: common/unix-peer.c\nCopyright: 2013 Nikos Mavrogiannopoulos\nLicense: BSD-3-Clause\n\nFiles: common/frob-getprogname.c\nCopyright: 2020 Red Hat Inc.\nLicense: BSD-3-Clause\n\nFiles: p11-kit/mock-module-ep8.c\nCopyright: 2012 Stefan Walter\n 2020 Red Hat, Inc.\nLicense: BSD-3-Clause\n\nFiles: fuzz/main.c\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: LGPL-2.1+\n\nFiles: fuzz/rpc_fuzzer.c\nCopyright: 2016 Google Inc\nLicense: Apache-2.0\n\nFiles: debian/*\nCopyright: 2011 Chris Coulson <chris.coulson at canonical.com>\n 2011-2022 Andreas Metzler <ametzler at debian.org>\nLicense: BSD-3-Clause\n\n\nFiles: po/de.po\nCopyright: 2011 Chris Leick\nComment: This file is distributed under the same license as the\n debian files of the p11-kit package.\nLicense: BSD-3-Clause\n\nFiles: po/fi.po\nCopyright: 2012 Rosetta Contributors and Canonical Ltd 2012\n Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012\n Timo Jyrinki <timo.jyrinki at iki.fi>, 2012\nLicense: same-as-rest-of-p11kit\n This file is distributed under the same license as the p11-kit\n package.\n\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n On Debian systems a copy of the LGPL 2.1 license can be found in\n /usr/share/common-licenses/LGPL-2.1\n\nLicense: Apache-2.0\n On Debian systems a copy of the Apache 2.0 license can be found in\n /usr/share/common-licenses/Apache-2.0\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libp11-kit0 at 0.24.1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1506,6 +4179,59 @@
"content": "851d270e36707787ab1cd269dbd9597864feaf3f8453ecd3c426caaa56142222"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-tcp_wrappers",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpam-modules at 1.5.2-6+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1522,6 +4248,59 @@
"content": "fc6a692d2f399b83ef5a7f310883286a5e4326095812d8bb934925125002981c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-tcp_wrappers",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpam-modules-bin at 1.5.2-6+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1538,6 +4317,59 @@
"content": "da03311a716bdcb73d1a93d322901ac46dce8eac67b5ccc95a6d8b776bfb4021"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-tcp_wrappers",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpam-runtime at 1.5.2-6+deb12u1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1554,6 +4386,59 @@
"content": "e360be5f17f9c09c8f17bae809f6c6f091c5bb6ab1a44fc33e4fb86c5e5559df"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-tcp_wrappers",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpam0g at 1.5.2-6+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1570,6 +4455,36 @@
"content": "030db54f4d76cdfe2bf0e8eb5f9efea0233ab3c7aa942d672c7b63b52dbaf935"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-clause-Cambridge WITH BINARY LIBRARY-LIKE PACKAGES exception",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthew Vernon <matthew at debian.org>\nSource: https://github.com/PCRE2Project/pcre2/releases\n\nFiles: *\nCopyright: 1997-2022 University of Cambridge.\nLicense: BSD-3-clause-Cambridge with BINARY LIBRARY-LIKE PACKAGES exception\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of the University of Cambridge nor the names of any\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n .\n EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES\n ------------------------------------------\n .\n The second condition in the BSD licence (covering binary redistributions) does\n not apply all the way down a chain of software. If binary package A includes\n PCRE2, it must respect the condition, but if package B is software that\n includes package A, the condition is not imposed on package B unless it uses\n PCRE2 independently.\n\nFiles: cmake/Find*\nCopyright: KDE Community\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: src/sljit/*\nCopyright: Zoltan Herczeg (hzmester at freemail.hu). All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without modification, are\n permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this list of\n conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice, this list\n of conditions and the following disclaimer in the documentation and/or other materials\n provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\n SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\n ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: testdata/*\nCopyright: None (public-domain)\nLicense: public-domain\n The data in the testdata directory is not copyrighted and is in the public domain.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpcre2-8-0 at 10.42-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1586,6 +4501,21 @@
"content": "6f94b488255acd996254f775c77ff3956557c61f860a3c9caeaf65457554194f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "expat",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: popt\nUpstream-Contact: rpm-maint at lists.rpm.org\nSource: https://ftp.osuosl.org/pub/rpm/popt/releases/popt-1.x/\nFiles-Excluded: popt.pdf\nComment:\n popt was originally written by Erik Troan when he was with RedHat. It's\n now maintained as part of Fedora.\n\nFiles: *\nCopyright: Copyright (c) 1998 Red Hat Software\n (C) 1998-2002 Red Hat, Inc.\nLicense: expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nFiles: debian/*\nCopyright: GNU copyright 1997 to 1999 by Joey Hess\n 2012, Paul Martin <pm at debian.org>\n 2018, Michael Jeanson <mjeanson at debian.org>\n 2022 H\u00e5vard F. Aasen <havard.f.aasen at pfft.no>\nLicense: GPL-2+\n This program is free software; you can redistribute it\n and/or modify it under the terms of the GNU General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later\n version.\n .\n This program is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied\n warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. See the GNU General Public License for more\n details.\n .\n You should have received a copy of the GNU General Public\n License along with this package; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n Boston, MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpopt0 at 1.19+dfsg-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1602,6 +4532,26 @@
"content": "e82ba5d01929eafb8b9954606a3c38b0332a987c2b3432388b4ee7365e54deae"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: procps-ng\nSource: https://gitlab.com/procps-ng/procps\n\nFiles: *\nCopyright: 1998-2004 Albert Cahalan\n 1991 Tony Rems <rembo at unisoft.com>\n 1993 Larry Greenfield\n 1996 Charles Blake\n 1999 Mike Coleman <mkc at acm.org>\n 2004 Nicholas Miell\n 2003 Chris Rivera\n 2003 Robert Love <rml at tech9.net>\n 2008 Morty Abzug\n 2009 Jarrod Lowe <procps at rrod.net>\n 1992 Branko Lankester\n ???? David Engel <david at ods.com>\n 1992-1998 Michael K. Johnson <johnsonm at sunsite.unc.edu>\n 2012-2022 Craig Small <csmall at enc.com.au>\n 1995 Martin Schulze <joey at infodrom.north.de>\nLicense: LGPL-2.1+\n\nFiles: src/top/*\nCopyright: 2002-2022 James C. Warner\nLicense: LGPL-2.0+\n\nFiles: src/pgrep.*\nCopyright: 2000 Kjetil Torgrim Homme <kjetilho at ifi.uio.no>\n 2002,2006 Albert Cahalan\n 2012 Roberto Polli <rpolli at babel.it>\nLicense: GPL-2.0+\n\nFiles: src/pidof.*\nCopyright: 2013 Jaromir Capik <jcapik at redhat.com>\nLicense: GPL-2.0+\n\nFiles: src/free.*\nCopyright: 2011 Sami Kerola <kerolasa at iki.fi>\n 2002-2003 Robert Love <rml at tech9.net>\n 1992 Brian Edmonds\n 1992 Rafal Maszkowski\n 2004 Albert Cahalan\nLicense: GPL-2.0+\n\nFiles: src/sysctl.*\nCopyright: 1999 George Staikos\nLicense: GPL-2.0+\n\nFiles: debian/*\nCopyright: 1997-2022 Craig Small <csmall at debian.org>\n 1996-1997 Helmut Geyer <Helmut.Geyer at iwr.uni-heidelberg.de>\nLicense: GPL-2.0+\n\nLicense: GPL-2.0+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2.0+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-2\".\n\nLicense: LGPL-2.1+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-2.1\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libproc2-0 at 2:4.0.2-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1618,6 +4568,39 @@
"content": "e02ebbd3701cf468dbf98d6d917fbe0325e881f07fe8b316150c8d2a64486e66"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU\n Readline library.\n .\n This package was put together by Matthias Klose <doko at debian.org>,\n derived from the bash package by Guy Maor <maor at debian.org>.\nUpstream-Name: Readline\nUpstream-Contact: \n Chet Ramey <chet.ramey at case.edu>\n Jeff Solomon <jsolomon at stanford.edu> (examples/excallback.c)\n Harold Levy <Harold.Levy at synopsys.com> (examples/rl-fgets.c)\nSource: http://ftp.gnu.org/gnu/readline/\n\nFiles: *\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n Readline is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Readline. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: examples/readlinebuf.h\n examples/rl-fgets.c\n examples/rlfe/*\n examples/rlwrap-*.tar.gz\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\n Copyright (c) 2001 by Dimitris Vyzovitis [vyzo at media.mit.edu]\n Copyright (C) 1999 Jeff Solomon (examples/excallback.c)\n Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c)\n Copyright (c) 1993-2002 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n Copyright (c) 1993-2002 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n Copyright (C) 1987 Oliver Laumann (examples/rlfe)\n Copyright (C) 2004, 1999 Per Bothner\n Copyright (C) 2000-2007 Hans Lub\n Copyright (C) 1999-2001 Geoff Wing\n Copyright (C) Damian Ivereigh 2000\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program (see the file COPYING); if not, write to the\n Free Software Foundation, Inc.,\n 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n The rlwrap example is also available in its own Debian package.\n The code copyrighted by Damian Ivereigh is licensed under LGPL-2.1+.\n\nFiles: doc/*.texi doc/*.info doc/*.html doc/*.[03] doc/*.dvi doc/*.pdf doc/*.ps\nCopyright:\n Copyright (C) 1988-2015 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL'.\n\nFiles: support/wcwidth.c\nCopyright: Markus Kuhn\nLicense: ISC-no-attribution\n Permission to use, copy, modify, and distribute this software\n for any purpose and without fee is hereby granted. The author\n disclaims all warranties with regard to this software.\n\nFiles: debian/*\nCopyright:\n Copyright (C) 1999-2009 Matthias Klose <doko at debian.org>\nLicense: GPL-3\n The Debian packaging is licensed under the GPL version 3, \n see `/usr/share/common-licenses/GPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "ISC-no-attribution",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU\n Readline library.\n .\n This package was put together by Matthias Klose <doko at debian.org>,\n derived from the bash package by Guy Maor <maor at debian.org>.\nUpstream-Name: Readline\nUpstream-Contact: \n Chet Ramey <chet.ramey at case.edu>\n Jeff Solomon <jsolomon at stanford.edu> (examples/excallback.c)\n Harold Levy <Harold.Levy at synopsys.com> (examples/rl-fgets.c)\nSource: http://ftp.gnu.org/gnu/readline/\n\nFiles: *\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n Readline is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Readline. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: examples/readlinebuf.h\n examples/rl-fgets.c\n examples/rlfe/*\n examples/rlwrap-*.tar.gz\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\n Copyright (c) 2001 by Dimitris Vyzovitis [vyzo at media.mit.edu]\n Copyright (C) 1999 Jeff Solomon (examples/excallback.c)\n Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c)\n Copyright (c) 1993-2002 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n Copyright (c) 1993-2002 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n Copyright (C) 1987 Oliver Laumann (examples/rlfe)\n Copyright (C) 2004, 1999 Per Bothner\n Copyright (C) 2000-2007 Hans Lub\n Copyright (C) 1999-2001 Geoff Wing\n Copyright (C) Damian Ivereigh 2000\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program (see the file COPYING); if not, write to the\n Free Software Foundation, Inc.,\n 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n The rlwrap example is also available in its own Debian package.\n The code copyrighted by Damian Ivereigh is licensed under LGPL-2.1+.\n\nFiles: doc/*.texi doc/*.info doc/*.html doc/*.[03] doc/*.dvi doc/*.pdf doc/*.ps\nCopyright:\n Copyright (C) 1988-2015 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL'.\n\nFiles: support/wcwidth.c\nCopyright: Markus Kuhn\nLicense: ISC-no-attribution\n Permission to use, copy, modify, and distribute this software\n for any purpose and without fee is hereby granted. The author\n disclaims all warranties with regard to this software.\n\nFiles: debian/*\nCopyright:\n Copyright (C) 1999-2009 Matthias Klose <doko at debian.org>\nLicense: GPL-3\n The Debian packaging is licensed under the GPL version 3, \n see `/usr/share/common-licenses/GPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libreadline8 at 8.2-1.3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1634,6 +4617,13 @@
"content": "108fe67957ca7cf9ba51d801118a1b37d404bea7b6e365025cd00779e9eca38d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libseccomp2 at 2.5.4-1+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1650,6 +4640,13 @@
"content": "2b07f5287b9105f40158b56e4d70cc1652dac56a408f3507b4ab3d061eed425f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libselinux1 at 3.4-1+b6?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1666,6 +4663,13 @@
"content": "835f806c21ae25e39053bd3057051640341b0cf08e1db9746fd82e370d82fa30"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsemanage-common at 3.4-1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1682,6 +4686,13 @@
"content": "fd36d0972866adde5a52269a309fcecd76a8e45e557dd0ecd33aa221cabc2a8c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsemanage2 at 3.4-1+b5?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1698,6 +4709,28 @@
"content": "b998946bb9818a97b387a962826caae33bc7fdcb6d706b2782c0470510be6b48"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsepol2 at 3.4-2.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1714,6 +4747,13 @@
"content": "5b3cecc829ef229125b340ccd2ca45ced75d24e9aa191912105016b1af94413f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libslang2 at 2.3.3-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1730,6 +4770,71 @@
"content": "81c54dabc8ba03116f92c5412c9e0a7bafbde9533fc08e5dc4cba19b3f3a05d8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsmartcols1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1746,6 +4851,59 @@
"content": "75bbf628518966bea04498df28391b5c070ccae110332302c52affcce8cb7b68"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libss2 at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1762,6 +4920,21 @@
"content": "8e88b98b3fc634721d0899f498d4cf2e62405faaab6582123c7923b1ec8129e1"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: OpenSSL\nSource: https://www.openssl.org\n\nFiles: *\nCopyright: 1995-2020, The OpenSSL Project Authors\n\t 1995-1998, Eric A. Young, Tim J. Hudson\n\t 2004-2014 Akamai Technologies.\n\t 2008 Andy Polyakov <appro at openssl.org>\n\t 2017 BaishanCloud.\n\t 2015 CloudFlare Inc.\n\t 2014-2016 Cryptography Research Inc.\n\t 2012-2014 Daniel J. Bernstein\n\t 2004 EdelKey Project.\n\t 2011 Google Inc.\n\t 2018-2019 IBM Corp.\n\t 2012,2014 Intel Corporation.\n\t 2012-2016 Jean-Philippe Aumasson\n\t 2007 KISA(Korea Information Security Agency).\n\t 2004 Kungliga Tekniska H\u00f6gskolan\n\t 2017 National Security Research Institute.\n\t 2006 Network Resonance Inc.\n\t 2005,2007-2020 Nokia\n\t 2006 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2002,2017-2020 Oracle and/or its affiliates.\n\t 1995 Patrick Powell\n\t 2019 Red Hat Inc.\n\t 2017 Ribose Inc.\n\t 2004,2018 Richard Levitte <richard at levitte.org>\n\t 2011 RTFM Inc.\n\t 2012 Samuel Neves <sneves at dei.uc.pt>\n\t 2015-2020 Siemens AG\n\t 2002 The OpenTSA Project.\n\t 2013-2014 Timo Ter\u00e4s <timo.teras at gmail.com>\n\t 2016 Viktor Dukhovni <openssl-users at dukhovni.org>.\n\t 2016 VMS Software Inc.\nLicense: Apache-2.0\n\nLicense: Apache-2.0\n Licensed under the Apache License 2.0 (the \"License\"). You may not use\n this file except in compliance with the License. You can obtain a copy\n in the file LICENSE in the source distribution or at\n https://www.openssl.org/source/license.html\n .\n On Debian systems, the complete text of the Apache 2.0 License\n can be found in `/usr/share/common-licenses/Apache-2.0'\n\nFiles: debian/*\nCopyright: Christoph Martin, Kurt Roeckx, Sebastian Andrzej Siewior\nLicense: Apache-2.0\n\nFiles: external/perl/Text-Template-1.56/*\nCopyright: 2013, Mark Jason Dominus <mjd at cpan.org>.\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libssl3 at 3.0.13-1~deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1778,6 +4951,21 @@
"content": "9b1b269020cec6aced3b39f096f7b67edd1f0d4ab24f412cb6506d0800e19cbf"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: OpenSSL\nSource: https://www.openssl.org\n\nFiles: *\nCopyright: 1995-2020, The OpenSSL Project Authors\n\t 1995-1998, Eric A. Young, Tim J. Hudson\n\t 2004-2014 Akamai Technologies.\n\t 2008 Andy Polyakov <appro at openssl.org>\n\t 2017 BaishanCloud.\n\t 2015 CloudFlare Inc.\n\t 2014-2016 Cryptography Research Inc.\n\t 2012-2014 Daniel J. Bernstein\n\t 2004 EdelKey Project.\n\t 2011 Google Inc.\n\t 2018-2019 IBM Corp.\n\t 2012,2014 Intel Corporation.\n\t 2012-2016 Jean-Philippe Aumasson\n\t 2007 KISA(Korea Information Security Agency).\n\t 2004 Kungliga Tekniska H\u00f6gskolan\n\t 2017 National Security Research Institute.\n\t 2006 Network Resonance Inc.\n\t 2005,2007-2020 Nokia\n\t 2006 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2002,2017-2020 Oracle and/or its affiliates.\n\t 1995 Patrick Powell\n\t 2019 Red Hat Inc.\n\t 2017 Ribose Inc.\n\t 2004,2018 Richard Levitte <richard at levitte.org>\n\t 2011 RTFM Inc.\n\t 2012 Samuel Neves <sneves at dei.uc.pt>\n\t 2015-2020 Siemens AG\n\t 2002 The OpenTSA Project.\n\t 2013-2014 Timo Ter\u00e4s <timo.teras at gmail.com>\n\t 2016 Viktor Dukhovni <openssl-users at dukhovni.org>.\n\t 2016 VMS Software Inc.\nLicense: Apache-2.0\n\nLicense: Apache-2.0\n Licensed under the Apache License 2.0 (the \"License\"). You may not use\n this file except in compliance with the License. You can obtain a copy\n in the file LICENSE in the source distribution or at\n https://www.openssl.org/source/license.html\n .\n On Debian systems, the complete text of the Apache 2.0 License\n can be found in `/usr/share/common-licenses/Apache-2.0'\n\nFiles: debian/*\nCopyright: Christoph Martin, Kurt Roeckx, Sebastian Andrzej Siewior\nLicense: Apache-2.0\n\nFiles: external/perl/Text-Template-1.56/*\nCopyright: 2013, Mark Jason Dominus <mjd at cpan.org>.\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libstdc++6 at 12.2.0-14?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1794,6 +4982,38 @@
"content": "b1bbf59d929c2725235b88799b59a92836b23c98990e7167f519d378af96fc20"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsystemd-shared at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1810,6 +5030,38 @@
"content": "079c4def8c5d296e2d61242b428ba7b97596abf47564c9856a468a75115b65ca"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsystemd0 at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1826,6 +5078,38 @@
"content": "eec4dc9d949d2c666b1da3fa762a340e8ba10c3a04d3eed32749a97695c15641"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtasn1-6 at 4.19.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1842,6 +5126,16 @@
"content": "96d8d2e55c51c998becbe4ec3b009022ee61d52526f811696ec10ee11b08910e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nSource: https://metacpan.org/release/Text-CharWidth\nUpstream-Contact: Tomohiro KUBOTA <kubota at debian.org>\nUpstream-Name: Text-CharWidth\n\nFiles: *\nCopyright: 2003, Tomohiro KUBOTA <kubota at debian.org>\n 2001, Paul Marquess\n 1999, Kenneth Albanowski\nLicense: Artistic or GPL-1+\n\nFiles: debian/*\nCopyright: 2003, Tomohiro KUBOTA <kubota at debian.org>\n 2005, 2006, 2008, 2009, 2011, Anibal Monsalve Salazar <anibal at debian.org>\n 2017, intrigeri <intrigeri at debian.org>\n 2019, Laurent Baillet <laurent.baillet at gmail.com>\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtext-charwidth-perl at 0.04-11?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1858,6 +5152,16 @@
"content": "5d5c9bf766aa437c1836bc8bcc66a71dff3855888817da301c0e604c03489b28"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nSource: https://metacpan.org/release/Text-Iconv\nUpstream-Contact: Michael Piotrowski <mxp at dynalabs.de>\nUpstream-Name: Text-Iconv\n\nFiles: *\nCopyright: 2007, Michael Piotrowski <mxp at dynalabs.de>\nLicense: Artistic or GPL-1+\n\nFiles: debian/*\nCopyright: 2000, 2001, 2003, 2004, Steve Haslam <araqnid at debian.org>\n 2002, Josselin Mouette <joss at debian.org>\n 2005, 2006, 2008, 2009, 2011, Anibal Monsalve Salazar <anibal at debian.org>\n 2011, Joey Hess <joeyh at debian.org>\n 2019, gregor herrmann <gregoa at debian.org>\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtext-iconv-perl at 1.7-8?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1874,6 +5178,16 @@
"content": "17f98c7c09af8ac3bdbfd5a5dad32f3f51c71b02cdfc411366f49092a395de85"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nSource: https://metacpan.org/release/Text-WrapI18N\nUpstream-Contact: Tomohiro KUBOTA <kubota at debian.org>\nUpstream-Name: Text-WrapI18N\n\nFiles: *\nCopyright: 2013, Tomohiro KUBOTA <kubota at debian.org>\nLicense: Artistic or GPL-1+\n\nFiles: debian/*\nCopyright: 2003, Tomohiro KUBOTA <kubota at debian.org>\n 2005, 2006, 2008, 2009, Anibal Monsalve Salazar <anibal at debian.org>\n 2015, 2019, gregor herrmann <gregoa at debian.org>\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtext-wrapi18n-perl at 0.06-10?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1890,6 +5204,26 @@
"content": "072d908f38f51090ca28ca5afa3b46b2957dc61fe35094c0b851426859a49a51"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "MIT/X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: ncurses\nUpstream-Contact: bug-ncurses at gnu.org\n Thomas Dickey <dickey at his.com>\nSource: https://invisible-mirror.net/archives/ncurses/\n\nFiles: *\nCopyright: 1998-2017,2018 Free Software Foundation, Inc.\n 1996-2020,2021 Thomas E. Dickey\n 2001 Pradeep Padala\nLicense: MIT/X11\n\nFiles: install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n\nFiles: progs/tset.c ncurses/tinfo/read_termcap.c\nCopyright: 1980,1991,1992,1993 The Regents of the University of California\nLicense: BSD-3-clause\n\nLicense: MIT/X11\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, distribute with modifications, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name(s) of the above copyright\n holders shall not be used in advertising or otherwise to promote the\n sale, use or other dealings in this Software without prior written\n authorization.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtinfo6 at 6.4-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1906,6 +5240,49 @@
"content": "3e3ef129b4bf61513144236e15e1b4ec57fa5ae3dc8a72137abdbefb7a63af85"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "__AUTO_PERMISSIVE__",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: package\nSource: https://sourceforge.net/projects/libtirpc/\nComment: The original upstream tarball included a symlink to\n /usr/share/automake-1.16/INSTALL. This source re-pack removes the symlink\n and adds the INSTALL file to the package.\n\nFiles: *\nCopyright: 2005 Bull S.A\nLicense: BSD-3-Clause\n\nFiles: debian/*\nCopyright: 2009 Steinar H. Gunderson <sesse at debian.org>\n 2022 Josue Ortega <josue at debian.org>\nLicense: GPL-2\n\nFiles: src/auth_des.c\n src/auth_none.c\n src/auth_unix.c\n src/authdes_prot.c\n src/authunix_prot.c\n src/bindresvport.c\n src/clnt_bcast.c\n src/clnt_perror.c\n src/clnt_raw.c\n src/clnt_simple.c\n src/clnt_vc.c\n src/debug.c\n src/debug.h\n src/des_crypt.c\n src/getnetconfig.c\n src/getnetpath.c\n src/getrpcent.c\n src/getrpcport.c\n src/key_call.c\n src/key_prot_xdr.c\n src/pmap_clnt.c\n src/pmap_getmaps.c\n src/pmap_getport.c\n src/pmap_prot.c\n src/pmap_prot2.c\n src/pmap_rmt.c\n src/rpc_callmsg.c\n src/rpc_com.h\n src/rpc_commondata.c\n src/rpc_dtablesize.c\n src/rpc_generic.c\n src/rpc_prot.c\n src/rpc_soc.c\n src/rpcb_prot.c\n src/rpcb_st_xdr.c\n src/rtime.c\n src/svc_auth.c\n src/svc_auth_des.c\n src/svc_auth_unix.c\n src/svc_dg.c\n src/svc_generic.c\n src/svc_raw.c\n src/svc_simple.c\n src/svc_vc.c\n src/xdr_array.c\n src/xdr_float.c\n src/xdr_mem.c\n src/xdr_rec.c\n src/xdr_reference.c\n src/xdr_sizeof.c\n src/xdr_stdio.c\n tirpc/rpc/auth_des.h\n tirpc/rpc/auth_unix.h\n tirpc/rpc/des_crypt.h\n tirpc/rpc/pmap_clnt.h\n tirpc/rpc/pmap_prot.h\n tirpc/rpc/pmap_rmt.h\n tirpc/rpc/raw.h\n tirpc/rpc/rpc_com.h\n tirpc/rpc/rpc_msg.h\n tirpc/rpc/rpcb_clnt.h\n tirpc/rpc/rpcb_prot.h\n tirpc/rpc/svc_auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\n 1986-1991 Sun Microsystems Inc.\n 1986-1991 Sun Microsystems Inc. In addition, portions of such source code were derived from Berkeley\n 1996 Jason Downs.\n 2014 Red Hat, Steve Dickson <steved at redhat.com>\nLicense: BSD-3-Clause\n\nFiles: Makefile.in\n aclocal.m4\n compile\n config.guess\n config.sub\n configure\n depcomp\n doc/Makefile.in\n install-sh\n ltmain.sh\n m4/libtool.m4\n m4/ltoptions.m4\n m4/ltsugar.m4\n m4/ltversion.m4\n m4/lt~obsolete.m4\n man/Makefile.in\n missing\n src/Makefile.in\nCopyright: 1992-2017 Free Software Foundation, Inc.\n 1994 X Consortium\nLicense: __AUTO_PERMISSIVE__\n Autogenerated files with permissive licenses.\n\nFiles: man/rpc_gss_get_error.3t\n man/rpc_gss_get_mech_info.3t\n man/rpc_gss_get_mechanisms.3t\n man/rpc_gss_get_principal_name.3t\n man/rpc_gss_get_versions.3t\n man/rpc_gss_getcred.3t\n man/rpc_gss_is_installed.3t\n man/rpc_gss_max_data_length.3t\n man/rpc_gss_mech_to_oid.3t\n man/rpc_gss_qop_to_num.3t\n man/rpc_gss_seccreate.3t\n man/rpc_gss_set_callback.3t\n man/rpc_gss_set_defaults.3t\n man/rpc_gss_set_svc_name.3t\n man/rpc_gss_svc_max_data_length.3t\n man/rpcsec_gss.3t\nCopyright: 2008 Isilon Inc http://www.isilon.com/\nLicense: BSD-2-Clause\n\nFiles: src/auth_gss.c\n src/authgss_prot.c\n src/svc_auth_gss.c\n src/svc_auth_none.c\n tirpc/rpc/auth_gss.h\nCopyright: 2000 Dug Song <dugsong at UMICH.EDU>. all wrongs reversed.\n 2000 The Regents of the University of Michigan.\nLicense: BSD-3-Clause\n\nFiles: src/binddynport.c\n src/rpc_gss_utils.c\n tirpc/rpc/rpcsec_gss.h\n tirpc/rpc/svc_auth_gss.h\nCopyright: 2013-2018 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/netname.c\n src/netnamer.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/clnt_generic.c\n src/rpcb_clnt.c\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/crypt_client.c\n tirpc/rpcsvc/crypt.x\nCopyright: 1996 Bill Paul <wpaul at ctr.columbia.edu>.\nLicense: BSD-4-Clause\n\nFiles: src/des_impl.c\nCopyright: 1992 Eric Young Collected from libdes and modified for SECURE RPC Martin Kuck 1994\nLicense: LGPL-2.1+\n\nFiles: INSTALL\nCopyright: 1994-2013 Free Software Foundation, Inc.\nLicense: PERMISSIVE\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n .\n Basic Installation\n\nFiles: tirpc/rpc/nettype.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/reentrant.h\nCopyright: 1997-1998 The NetBSD Foundation, Inc.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/svc_mt.h\nCopyright: 2015 Axentia Technologies AB.\nLicense: BSD-2-Clause\n\nFiles: src/getpeereid.c\nCopyright: 2001 Dima Dorfman.\nLicense: BSD-2-Clause\n\nFiles: tirpc/un-namespace.h\nCopyright: 2001 Daniel Eischen <deischen at FreeBSD.org>.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/rpcent.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/epoll_sub.c\nCopyright: 2003 Niels Provos <provos at citi.umich.edu>\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/xdr.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/rpcdname.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/types.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/des_soft.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc.c\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_soc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/xdr.c\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/getpublickey.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/rpc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt_soc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc_run.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/des.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/nis.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_dg.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of Sun Microsystems, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Bill Paul.\n 4. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n This file is distributed under the terms of the GNU Lesser General\n Public License, version 2.1 or later - see the file COPYING.LIB for details.\n If you did not receive a copy of the license with this program, please\n see <http://www.gnu.org/licenses/> to obtain a copy.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "PERMISSIVE",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: package\nSource: https://sourceforge.net/projects/libtirpc/\nComment: The original upstream tarball included a symlink to\n /usr/share/automake-1.16/INSTALL. This source re-pack removes the symlink\n and adds the INSTALL file to the package.\n\nFiles: *\nCopyright: 2005 Bull S.A\nLicense: BSD-3-Clause\n\nFiles: debian/*\nCopyright: 2009 Steinar H. Gunderson <sesse at debian.org>\n 2022 Josue Ortega <josue at debian.org>\nLicense: GPL-2\n\nFiles: src/auth_des.c\n src/auth_none.c\n src/auth_unix.c\n src/authdes_prot.c\n src/authunix_prot.c\n src/bindresvport.c\n src/clnt_bcast.c\n src/clnt_perror.c\n src/clnt_raw.c\n src/clnt_simple.c\n src/clnt_vc.c\n src/debug.c\n src/debug.h\n src/des_crypt.c\n src/getnetconfig.c\n src/getnetpath.c\n src/getrpcent.c\n src/getrpcport.c\n src/key_call.c\n src/key_prot_xdr.c\n src/pmap_clnt.c\n src/pmap_getmaps.c\n src/pmap_getport.c\n src/pmap_prot.c\n src/pmap_prot2.c\n src/pmap_rmt.c\n src/rpc_callmsg.c\n src/rpc_com.h\n src/rpc_commondata.c\n src/rpc_dtablesize.c\n src/rpc_generic.c\n src/rpc_prot.c\n src/rpc_soc.c\n src/rpcb_prot.c\n src/rpcb_st_xdr.c\n src/rtime.c\n src/svc_auth.c\n src/svc_auth_des.c\n src/svc_auth_unix.c\n src/svc_dg.c\n src/svc_generic.c\n src/svc_raw.c\n src/svc_simple.c\n src/svc_vc.c\n src/xdr_array.c\n src/xdr_float.c\n src/xdr_mem.c\n src/xdr_rec.c\n src/xdr_reference.c\n src/xdr_sizeof.c\n src/xdr_stdio.c\n tirpc/rpc/auth_des.h\n tirpc/rpc/auth_unix.h\n tirpc/rpc/des_crypt.h\n tirpc/rpc/pmap_clnt.h\n tirpc/rpc/pmap_prot.h\n tirpc/rpc/pmap_rmt.h\n tirpc/rpc/raw.h\n tirpc/rpc/rpc_com.h\n tirpc/rpc/rpc_msg.h\n tirpc/rpc/rpcb_clnt.h\n tirpc/rpc/rpcb_prot.h\n tirpc/rpc/svc_auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\n 1986-1991 Sun Microsystems Inc.\n 1986-1991 Sun Microsystems Inc. In addition, portions of such source code were derived from Berkeley\n 1996 Jason Downs.\n 2014 Red Hat, Steve Dickson <steved at redhat.com>\nLicense: BSD-3-Clause\n\nFiles: Makefile.in\n aclocal.m4\n compile\n config.guess\n config.sub\n configure\n depcomp\n doc/Makefile.in\n install-sh\n ltmain.sh\n m4/libtool.m4\n m4/ltoptions.m4\n m4/ltsugar.m4\n m4/ltversion.m4\n m4/lt~obsolete.m4\n man/Makefile.in\n missing\n src/Makefile.in\nCopyright: 1992-2017 Free Software Foundation, Inc.\n 1994 X Consortium\nLicense: __AUTO_PERMISSIVE__\n Autogenerated files with permissive licenses.\n\nFiles: man/rpc_gss_get_error.3t\n man/rpc_gss_get_mech_info.3t\n man/rpc_gss_get_mechanisms.3t\n man/rpc_gss_get_principal_name.3t\n man/rpc_gss_get_versions.3t\n man/rpc_gss_getcred.3t\n man/rpc_gss_is_installed.3t\n man/rpc_gss_max_data_length.3t\n man/rpc_gss_mech_to_oid.3t\n man/rpc_gss_qop_to_num.3t\n man/rpc_gss_seccreate.3t\n man/rpc_gss_set_callback.3t\n man/rpc_gss_set_defaults.3t\n man/rpc_gss_set_svc_name.3t\n man/rpc_gss_svc_max_data_length.3t\n man/rpcsec_gss.3t\nCopyright: 2008 Isilon Inc http://www.isilon.com/\nLicense: BSD-2-Clause\n\nFiles: src/auth_gss.c\n src/authgss_prot.c\n src/svc_auth_gss.c\n src/svc_auth_none.c\n tirpc/rpc/auth_gss.h\nCopyright: 2000 Dug Song <dugsong at UMICH.EDU>. all wrongs reversed.\n 2000 The Regents of the University of Michigan.\nLicense: BSD-3-Clause\n\nFiles: src/binddynport.c\n src/rpc_gss_utils.c\n tirpc/rpc/rpcsec_gss.h\n tirpc/rpc/svc_auth_gss.h\nCopyright: 2013-2018 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/netname.c\n src/netnamer.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/clnt_generic.c\n src/rpcb_clnt.c\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/crypt_client.c\n tirpc/rpcsvc/crypt.x\nCopyright: 1996 Bill Paul <wpaul at ctr.columbia.edu>.\nLicense: BSD-4-Clause\n\nFiles: src/des_impl.c\nCopyright: 1992 Eric Young Collected from libdes and modified for SECURE RPC Martin Kuck 1994\nLicense: LGPL-2.1+\n\nFiles: INSTALL\nCopyright: 1994-2013 Free Software Foundation, Inc.\nLicense: PERMISSIVE\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n .\n Basic Installation\n\nFiles: tirpc/rpc/nettype.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/reentrant.h\nCopyright: 1997-1998 The NetBSD Foundation, Inc.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/svc_mt.h\nCopyright: 2015 Axentia Technologies AB.\nLicense: BSD-2-Clause\n\nFiles: src/getpeereid.c\nCopyright: 2001 Dima Dorfman.\nLicense: BSD-2-Clause\n\nFiles: tirpc/un-namespace.h\nCopyright: 2001 Daniel Eischen <deischen at FreeBSD.org>.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/rpcent.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/epoll_sub.c\nCopyright: 2003 Niels Provos <provos at citi.umich.edu>\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/xdr.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/rpcdname.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/types.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/des_soft.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc.c\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_soc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/xdr.c\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/getpublickey.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/rpc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt_soc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc_run.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/des.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/nis.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_dg.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of Sun Microsystems, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Bill Paul.\n 4. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n This file is distributed under the terms of the GNU Lesser General\n Public License, version 2.1 or later - see the file COPYING.LIB for details.\n If you did not receive a copy of the license with this program, please\n see <http://www.gnu.org/licenses/> to obtain a copy.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtirpc-common at 1.3.3+ds-1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1922,6 +5299,49 @@
"content": "2a46d5a5e9486da11ffeff5740931740d6deae4f92cd6098df060dc5dff1e1c7"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "__AUTO_PERMISSIVE__",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: package\nSource: https://sourceforge.net/projects/libtirpc/\nComment: The original upstream tarball included a symlink to\n /usr/share/automake-1.16/INSTALL. This source re-pack removes the symlink\n and adds the INSTALL file to the package.\n\nFiles: *\nCopyright: 2005 Bull S.A\nLicense: BSD-3-Clause\n\nFiles: debian/*\nCopyright: 2009 Steinar H. Gunderson <sesse at debian.org>\n 2022 Josue Ortega <josue at debian.org>\nLicense: GPL-2\n\nFiles: src/auth_des.c\n src/auth_none.c\n src/auth_unix.c\n src/authdes_prot.c\n src/authunix_prot.c\n src/bindresvport.c\n src/clnt_bcast.c\n src/clnt_perror.c\n src/clnt_raw.c\n src/clnt_simple.c\n src/clnt_vc.c\n src/debug.c\n src/debug.h\n src/des_crypt.c\n src/getnetconfig.c\n src/getnetpath.c\n src/getrpcent.c\n src/getrpcport.c\n src/key_call.c\n src/key_prot_xdr.c\n src/pmap_clnt.c\n src/pmap_getmaps.c\n src/pmap_getport.c\n src/pmap_prot.c\n src/pmap_prot2.c\n src/pmap_rmt.c\n src/rpc_callmsg.c\n src/rpc_com.h\n src/rpc_commondata.c\n src/rpc_dtablesize.c\n src/rpc_generic.c\n src/rpc_prot.c\n src/rpc_soc.c\n src/rpcb_prot.c\n src/rpcb_st_xdr.c\n src/rtime.c\n src/svc_auth.c\n src/svc_auth_des.c\n src/svc_auth_unix.c\n src/svc_dg.c\n src/svc_generic.c\n src/svc_raw.c\n src/svc_simple.c\n src/svc_vc.c\n src/xdr_array.c\n src/xdr_float.c\n src/xdr_mem.c\n src/xdr_rec.c\n src/xdr_reference.c\n src/xdr_sizeof.c\n src/xdr_stdio.c\n tirpc/rpc/auth_des.h\n tirpc/rpc/auth_unix.h\n tirpc/rpc/des_crypt.h\n tirpc/rpc/pmap_clnt.h\n tirpc/rpc/pmap_prot.h\n tirpc/rpc/pmap_rmt.h\n tirpc/rpc/raw.h\n tirpc/rpc/rpc_com.h\n tirpc/rpc/rpc_msg.h\n tirpc/rpc/rpcb_clnt.h\n tirpc/rpc/rpcb_prot.h\n tirpc/rpc/svc_auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\n 1986-1991 Sun Microsystems Inc.\n 1986-1991 Sun Microsystems Inc. In addition, portions of such source code were derived from Berkeley\n 1996 Jason Downs.\n 2014 Red Hat, Steve Dickson <steved at redhat.com>\nLicense: BSD-3-Clause\n\nFiles: Makefile.in\n aclocal.m4\n compile\n config.guess\n config.sub\n configure\n depcomp\n doc/Makefile.in\n install-sh\n ltmain.sh\n m4/libtool.m4\n m4/ltoptions.m4\n m4/ltsugar.m4\n m4/ltversion.m4\n m4/lt~obsolete.m4\n man/Makefile.in\n missing\n src/Makefile.in\nCopyright: 1992-2017 Free Software Foundation, Inc.\n 1994 X Consortium\nLicense: __AUTO_PERMISSIVE__\n Autogenerated files with permissive licenses.\n\nFiles: man/rpc_gss_get_error.3t\n man/rpc_gss_get_mech_info.3t\n man/rpc_gss_get_mechanisms.3t\n man/rpc_gss_get_principal_name.3t\n man/rpc_gss_get_versions.3t\n man/rpc_gss_getcred.3t\n man/rpc_gss_is_installed.3t\n man/rpc_gss_max_data_length.3t\n man/rpc_gss_mech_to_oid.3t\n man/rpc_gss_qop_to_num.3t\n man/rpc_gss_seccreate.3t\n man/rpc_gss_set_callback.3t\n man/rpc_gss_set_defaults.3t\n man/rpc_gss_set_svc_name.3t\n man/rpc_gss_svc_max_data_length.3t\n man/rpcsec_gss.3t\nCopyright: 2008 Isilon Inc http://www.isilon.com/\nLicense: BSD-2-Clause\n\nFiles: src/auth_gss.c\n src/authgss_prot.c\n src/svc_auth_gss.c\n src/svc_auth_none.c\n tirpc/rpc/auth_gss.h\nCopyright: 2000 Dug Song <dugsong at UMICH.EDU>. all wrongs reversed.\n 2000 The Regents of the University of Michigan.\nLicense: BSD-3-Clause\n\nFiles: src/binddynport.c\n src/rpc_gss_utils.c\n tirpc/rpc/rpcsec_gss.h\n tirpc/rpc/svc_auth_gss.h\nCopyright: 2013-2018 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/netname.c\n src/netnamer.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/clnt_generic.c\n src/rpcb_clnt.c\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/crypt_client.c\n tirpc/rpcsvc/crypt.x\nCopyright: 1996 Bill Paul <wpaul at ctr.columbia.edu>.\nLicense: BSD-4-Clause\n\nFiles: src/des_impl.c\nCopyright: 1992 Eric Young Collected from libdes and modified for SECURE RPC Martin Kuck 1994\nLicense: LGPL-2.1+\n\nFiles: INSTALL\nCopyright: 1994-2013 Free Software Foundation, Inc.\nLicense: PERMISSIVE\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n .\n Basic Installation\n\nFiles: tirpc/rpc/nettype.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/reentrant.h\nCopyright: 1997-1998 The NetBSD Foundation, Inc.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/svc_mt.h\nCopyright: 2015 Axentia Technologies AB.\nLicense: BSD-2-Clause\n\nFiles: src/getpeereid.c\nCopyright: 2001 Dima Dorfman.\nLicense: BSD-2-Clause\n\nFiles: tirpc/un-namespace.h\nCopyright: 2001 Daniel Eischen <deischen at FreeBSD.org>.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/rpcent.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/epoll_sub.c\nCopyright: 2003 Niels Provos <provos at citi.umich.edu>\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/xdr.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/rpcdname.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/types.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/des_soft.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc.c\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_soc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/xdr.c\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/getpublickey.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/rpc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt_soc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc_run.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/des.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/nis.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_dg.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of Sun Microsystems, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Bill Paul.\n 4. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n This file is distributed under the terms of the GNU Lesser General\n Public License, version 2.1 or later - see the file COPYING.LIB for details.\n If you did not receive a copy of the license with this program, please\n see <http://www.gnu.org/licenses/> to obtain a copy.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "PERMISSIVE",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: package\nSource: https://sourceforge.net/projects/libtirpc/\nComment: The original upstream tarball included a symlink to\n /usr/share/automake-1.16/INSTALL. This source re-pack removes the symlink\n and adds the INSTALL file to the package.\n\nFiles: *\nCopyright: 2005 Bull S.A\nLicense: BSD-3-Clause\n\nFiles: debian/*\nCopyright: 2009 Steinar H. Gunderson <sesse at debian.org>\n 2022 Josue Ortega <josue at debian.org>\nLicense: GPL-2\n\nFiles: src/auth_des.c\n src/auth_none.c\n src/auth_unix.c\n src/authdes_prot.c\n src/authunix_prot.c\n src/bindresvport.c\n src/clnt_bcast.c\n src/clnt_perror.c\n src/clnt_raw.c\n src/clnt_simple.c\n src/clnt_vc.c\n src/debug.c\n src/debug.h\n src/des_crypt.c\n src/getnetconfig.c\n src/getnetpath.c\n src/getrpcent.c\n src/getrpcport.c\n src/key_call.c\n src/key_prot_xdr.c\n src/pmap_clnt.c\n src/pmap_getmaps.c\n src/pmap_getport.c\n src/pmap_prot.c\n src/pmap_prot2.c\n src/pmap_rmt.c\n src/rpc_callmsg.c\n src/rpc_com.h\n src/rpc_commondata.c\n src/rpc_dtablesize.c\n src/rpc_generic.c\n src/rpc_prot.c\n src/rpc_soc.c\n src/rpcb_prot.c\n src/rpcb_st_xdr.c\n src/rtime.c\n src/svc_auth.c\n src/svc_auth_des.c\n src/svc_auth_unix.c\n src/svc_dg.c\n src/svc_generic.c\n src/svc_raw.c\n src/svc_simple.c\n src/svc_vc.c\n src/xdr_array.c\n src/xdr_float.c\n src/xdr_mem.c\n src/xdr_rec.c\n src/xdr_reference.c\n src/xdr_sizeof.c\n src/xdr_stdio.c\n tirpc/rpc/auth_des.h\n tirpc/rpc/auth_unix.h\n tirpc/rpc/des_crypt.h\n tirpc/rpc/pmap_clnt.h\n tirpc/rpc/pmap_prot.h\n tirpc/rpc/pmap_rmt.h\n tirpc/rpc/raw.h\n tirpc/rpc/rpc_com.h\n tirpc/rpc/rpc_msg.h\n tirpc/rpc/rpcb_clnt.h\n tirpc/rpc/rpcb_prot.h\n tirpc/rpc/svc_auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\n 1986-1991 Sun Microsystems Inc.\n 1986-1991 Sun Microsystems Inc. In addition, portions of such source code were derived from Berkeley\n 1996 Jason Downs.\n 2014 Red Hat, Steve Dickson <steved at redhat.com>\nLicense: BSD-3-Clause\n\nFiles: Makefile.in\n aclocal.m4\n compile\n config.guess\n config.sub\n configure\n depcomp\n doc/Makefile.in\n install-sh\n ltmain.sh\n m4/libtool.m4\n m4/ltoptions.m4\n m4/ltsugar.m4\n m4/ltversion.m4\n m4/lt~obsolete.m4\n man/Makefile.in\n missing\n src/Makefile.in\nCopyright: 1992-2017 Free Software Foundation, Inc.\n 1994 X Consortium\nLicense: __AUTO_PERMISSIVE__\n Autogenerated files with permissive licenses.\n\nFiles: man/rpc_gss_get_error.3t\n man/rpc_gss_get_mech_info.3t\n man/rpc_gss_get_mechanisms.3t\n man/rpc_gss_get_principal_name.3t\n man/rpc_gss_get_versions.3t\n man/rpc_gss_getcred.3t\n man/rpc_gss_is_installed.3t\n man/rpc_gss_max_data_length.3t\n man/rpc_gss_mech_to_oid.3t\n man/rpc_gss_qop_to_num.3t\n man/rpc_gss_seccreate.3t\n man/rpc_gss_set_callback.3t\n man/rpc_gss_set_defaults.3t\n man/rpc_gss_set_svc_name.3t\n man/rpc_gss_svc_max_data_length.3t\n man/rpcsec_gss.3t\nCopyright: 2008 Isilon Inc http://www.isilon.com/\nLicense: BSD-2-Clause\n\nFiles: src/auth_gss.c\n src/authgss_prot.c\n src/svc_auth_gss.c\n src/svc_auth_none.c\n tirpc/rpc/auth_gss.h\nCopyright: 2000 Dug Song <dugsong at UMICH.EDU>. all wrongs reversed.\n 2000 The Regents of the University of Michigan.\nLicense: BSD-3-Clause\n\nFiles: src/binddynport.c\n src/rpc_gss_utils.c\n tirpc/rpc/rpcsec_gss.h\n tirpc/rpc/svc_auth_gss.h\nCopyright: 2013-2018 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/netname.c\n src/netnamer.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/clnt_generic.c\n src/rpcb_clnt.c\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/crypt_client.c\n tirpc/rpcsvc/crypt.x\nCopyright: 1996 Bill Paul <wpaul at ctr.columbia.edu>.\nLicense: BSD-4-Clause\n\nFiles: src/des_impl.c\nCopyright: 1992 Eric Young Collected from libdes and modified for SECURE RPC Martin Kuck 1994\nLicense: LGPL-2.1+\n\nFiles: INSTALL\nCopyright: 1994-2013 Free Software Foundation, Inc.\nLicense: PERMISSIVE\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n .\n Basic Installation\n\nFiles: tirpc/rpc/nettype.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/reentrant.h\nCopyright: 1997-1998 The NetBSD Foundation, Inc.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/svc_mt.h\nCopyright: 2015 Axentia Technologies AB.\nLicense: BSD-2-Clause\n\nFiles: src/getpeereid.c\nCopyright: 2001 Dima Dorfman.\nLicense: BSD-2-Clause\n\nFiles: tirpc/un-namespace.h\nCopyright: 2001 Daniel Eischen <deischen at FreeBSD.org>.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/rpcent.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/epoll_sub.c\nCopyright: 2003 Niels Provos <provos at citi.umich.edu>\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/xdr.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/rpcdname.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/types.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/des_soft.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc.c\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_soc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/xdr.c\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/getpublickey.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/rpc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt_soc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc_run.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/des.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/nis.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_dg.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of Sun Microsystems, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Bill Paul.\n 4. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n This file is distributed under the terms of the GNU Lesser General\n Public License, version 2.1 or later - see the file COPYING.LIB for details.\n If you did not receive a copy of the license with this program, please\n see <http://www.gnu.org/licenses/> to obtain a copy.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtirpc3 at 1.3.3+ds-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1938,6 +5358,38 @@
"content": "ed1e715a79492808b9aa3a25ebca508743aef282c099b6e0216b5dd8dd8b3796"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libudev1 at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1954,6 +5406,52 @@
"content": "d466bbfe011d764d793c1d9d777cad9c7cf65b938e11598f27408171ad95a951"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libunistring\nUpstream-Contact: Bruno Haible <bruno at clisp.org>\nSource: http://ftp.gnu.org/gnu/libunistring/\n\nFiles: *\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gnulib-m4/* m4/*.m4\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: FreeSoftware\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nFiles: doc/*\nCopyright: 2001-2022 Free Software Foundation, Inc.\nLicense: GPL-3+ or GFDL-1.2+\n\nFiles: tests/* woe32dll/* autogen.sh\nCopyright: 1990-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/*\nCopyright: 1995-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: m4/init-package-version.m4\n build-aux/ltmain.sh\nCopyright: 1992-2021, Free Software Foundation, Inc.\nLicense: GPL-2+ with distribution exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n\nFiles: build-aux/texi2html\nCopyright: 1999-2005 Patrice Dumas <dumas at centre-cired.fr>,\n 1999-2005 Derek Price <derek at ximbiot.com>,\n 1999-2005 Adrian Aichner <adrian at xemacs.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: MIT\n\nFiles: debian/*\nCopyright: 2009-2011 Andreas Rottmann <rotty at debian.org>\n 2017-2022 J\u00f6rg Frings-F\u00fcrst <debian at jff.email>\nLicense: GPL-3+\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU General Public License\n version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, \n Boston, MA 02110-1301, USA.\n .\n On Debian systems the full text of the GNU General Public License\n version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GFDL-1.2+\n This manual is covered by the GNU FDL. Permission is granted to\n copy, distribute and/or modify this document under the terms of the\n GNU Free Documentation License (FDL), either version 1.2 of the\n License, or (at your option) any later version published by the Free\n Software Foundation (FSF); with no Invariant Sections, with no\n Front-Cover Text, and with no Back-Cover Texts.\n .\n On Debian systems the full text of the GNU Free Documentation License\n version 1.2 can be found in the file\n `/usr/share/common-licenses/GFDL-1.2'.\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "FreeSoftware",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libunistring\nUpstream-Contact: Bruno Haible <bruno at clisp.org>\nSource: http://ftp.gnu.org/gnu/libunistring/\n\nFiles: *\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gnulib-m4/* m4/*.m4\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: FreeSoftware\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nFiles: doc/*\nCopyright: 2001-2022 Free Software Foundation, Inc.\nLicense: GPL-3+ or GFDL-1.2+\n\nFiles: tests/* woe32dll/* autogen.sh\nCopyright: 1990-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/*\nCopyright: 1995-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: m4/init-package-version.m4\n build-aux/ltmain.sh\nCopyright: 1992-2021, Free Software Foundation, Inc.\nLicense: GPL-2+ with distribution exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n\nFiles: build-aux/texi2html\nCopyright: 1999-2005 Patrice Dumas <dumas at centre-cired.fr>,\n 1999-2005 Derek Price <derek at ximbiot.com>,\n 1999-2005 Adrian Aichner <adrian at xemacs.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: MIT\n\nFiles: debian/*\nCopyright: 2009-2011 Andreas Rottmann <rotty at debian.org>\n 2017-2022 J\u00f6rg Frings-F\u00fcrst <debian at jff.email>\nLicense: GPL-3+\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU General Public License\n version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, \n Boston, MA 02110-1301, USA.\n .\n On Debian systems the full text of the GNU General Public License\n version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GFDL-1.2+\n This manual is covered by the GNU FDL. Permission is granted to\n copy, distribute and/or modify this document under the terms of the\n GNU Free Documentation License (FDL), either version 1.2 of the\n License, or (at your option) any later version published by the Free\n Software Foundation (FSF); with no Invariant Sections, with no\n Front-Cover Text, and with no Back-Cover Texts.\n .\n On Debian systems the full text of the GNU Free Documentation License\n version 1.2 can be found in the file\n `/usr/share/common-licenses/GFDL-1.2'.\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later OR GFDL-1.2-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libunistring\nUpstream-Contact: Bruno Haible <bruno at clisp.org>\nSource: http://ftp.gnu.org/gnu/libunistring/\n\nFiles: *\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gnulib-m4/* m4/*.m4\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: FreeSoftware\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nFiles: doc/*\nCopyright: 2001-2022 Free Software Foundation, Inc.\nLicense: GPL-3+ or GFDL-1.2+\n\nFiles: tests/* woe32dll/* autogen.sh\nCopyright: 1990-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/*\nCopyright: 1995-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: m4/init-package-version.m4\n build-aux/ltmain.sh\nCopyright: 1992-2021, Free Software Foundation, Inc.\nLicense: GPL-2+ with distribution exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n\nFiles: build-aux/texi2html\nCopyright: 1999-2005 Patrice Dumas <dumas at centre-cired.fr>,\n 1999-2005 Derek Price <derek at ximbiot.com>,\n 1999-2005 Adrian Aichner <adrian at xemacs.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: MIT\n\nFiles: debian/*\nCopyright: 2009-2011 Andreas Rottmann <rotty at debian.org>\n 2017-2022 J\u00f6rg Frings-F\u00fcrst <debian at jff.email>\nLicense: GPL-3+\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU General Public License\n version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, \n Boston, MA 02110-1301, USA.\n .\n On Debian systems the full text of the GNU General Public License\n version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GFDL-1.2+\n This manual is covered by the GNU FDL. Permission is granted to\n copy, distribute and/or modify this document under the terms of the\n GNU Free Documentation License (FDL), either version 1.2 of the\n License, or (at your option) any later version published by the Free\n Software Foundation (FSF); with no Invariant Sections, with no\n Front-Cover Text, and with no Back-Cover Texts.\n .\n On Debian systems the full text of the GNU Free Documentation License\n version 1.2 can be found in the file\n `/usr/share/common-licenses/GFDL-1.2'.\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH distribution exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libunistring2 at 1.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -1966,8 +5464,73 @@
"content": "4590de67ab21ae9e4344896731fce903"
},
{
- "alg": "SHA-256",
- "content": "1ff16517fd1cfaa266de47255b98c44ff51e8a1653f7d8f1fe9c386ff0f1aa7e"
+ "alg": "SHA-256",
+ "content": "1ff16517fd1cfaa266de47255b98c44ff51e8a1653f7d8f1fe9c386ff0f1aa7e"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
}
],
"purl": "pkg:deb/debian/libuuid1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
@@ -1986,6 +5549,31 @@
"content": "cb841d66950a43af4a398625313d2f3da9065299c9738538de6c2c3495857040"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "custom",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: iptables\nUpstream-Contact: Netfilter Developer List <netfilter at vger.kernel.org>\nSource: https://www.netfilter.org/\n\nFiles: *\nCopyright: 2000-2002, the netfilter coreteam <coreteam at netfilter.org>\n Paul 'Rusty' Russell <rusty at rustcorp.com.au>\n Marc Boucher <marc+nf at mbsi.ca>\n James Morris <jmorris at intercode.com.au>\n Harald Welte <laforge at gnumonks.org>\n Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libebt_802_3.c\nCopyright: 2003 Chris Vitale <csv at bluetail.com>\nLicense: GPL-2\n\nFiles: extensions/libebt_ip.c extensions/libebt_log.c extensions/libebt_mark*.c\nCopyright: 2002 Bart De Schuymer <bdschuym at pandora.be>\nLicense: GPL-2\n\nFiles: extensions/libebt_limit.c\nCopyright: 2003 Tom Marshall <tommy at home.tig-grr.com>\nLicense: GPL-2\n\nFiles: extensions/libebt_nflog.c\nCopyright: 2008 Peter Warasin <peter at endian.com>\nLicense: GPL-2\n\nFiles: extensions/libip6t_DNAT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_DNPT.c\nCopyright: 2012-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_MASQUERADE.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_NETMAP.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_REDIRECT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_REJECT.c\nCopyright: 2000, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libip6t_SNAT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_SNPT.c\nCopyright: 2012-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_mh.c\nCopyright: 2006, USAGI/WIDE Project\nLicense: GPL-2\n\nFiles: extensions/libipt_CLUSTERIP.c\nCopyright: 2003, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ECN.c\nCopyright: 2002, by Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_REJECT.c\nCopyright: 2000, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libipt_TTL.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ULOG.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ttl.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_AUDIT.c\nCopyright: 2010-2011, Thomas Graf <tgraf at redhat.com>\n 2010-2011, Red Hat, Inc.\nLicense: GPL-2\n\nFiles: extensions/libxt_CHECKSUM.c\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\n 2010, Red Hat, Inc\nLicense: GPL-2\n\nFiles: extensions/libxt_CLASSIFY.c\nCopyright: 2003-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_CONNMARK.c\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_CONNSECMARK.c\nCopyright: 2006, Red Hat, Inc., James Morris <jmorris at redhat.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_CT.c\nCopyright: 2010-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_DSCP.c\nCopyright: 2000-2002, Matthew G. Marsh <mgm at paktronix.com>\n Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_HMARK.c\nCopyright: 2012, Hans Schillstrom <hans.schillstrom at ericsson.com>\n 2012, Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_IDLETIMER.c\nCopyright: 2010, Nokia Corporation\nLicense: GPL-2\n\nFiles: extensions/libxt_LED.c\nCopyright: 2008, Adam Nielsen <a.nielsen at shikadi.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_NFQUEUE.c\nCopyright: 2005, by Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_RATEEST.c\nCopyright: 2008-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_SECMARK.c\nCopyright: 2006, Red Hat, Inc., James Morris <jmorris at redhat.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_SET.c\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2010, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libxt_SYNPROXY.c\nCopyright: 2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_TCPMSS.c\nCopyright: 2000, Marc Boucher\nLicense: GPL-2\n\nFiles: extensions/libxt_TCPOPTSTRIP.c\nCopyright: 2007, Sven Schnelle <svens at bitebene.org>\n 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_TEE.c\nCopyright: 2007, Sebastian Cla\u00dfen <sebastian.classen [at] freenet.ag>\n 2007-2010, Jan Engelhardt <jengelh [at] medozas de>\nLicense: GPL-2\n\nFiles: extensions/libxt_TOS.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_TPROXY.c\nCopyright: 2002-2008, BalaBit IT Ltd.\nLicense: GPL-2\n\nFiles: extensions/libxt_addrtype.c\nCopyright: 2003-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_bpf.c\nCopyright: 2013, Google, Inc.\nLicense: GPL-2\n\nFiles: extensions/libxt_cluster.c\nCopyright: 2009, Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_connmark.c\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_conntrack.c\nCopyright: 2001, Marc Boucher (marc at mbsi.ca).\n 2007-2008, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_dccp.c\nCopyright: 2005, by Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_devgroup.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_dscp.c\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_ecn.c\nCopyright: 2002, Harald Welte <laforge at netfilter.org>\n 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_hashlimit.c\nCopyright: 2003-2004, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_osf.c\nCopyright: 2003+, Evgeniy Polyakov <zbr at ioremap.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_owner.c\nCopyright: 2007-2008, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_policy.c\nCopyright: 2005-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_rateest.c\nCopyright: 2008-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_sctp.c\nCopyright: 2003, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_set.c\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2010, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libxt_socket.c\nCopyright: 2007, BalaBit IT Ltd.\nLicense: GPL-2\n\nFiles: extensions/libxt_statistic.c\nCopyright: 2006-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_string.c\nCopyright: 2000, Emmanuel Roger <winfield at freegates.be>\n 2005-08-05, Pablo Neira Ayuso <pablo at eurodev.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_time.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_tos.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_u32.c\nCopyright: 2002, Don Cohen <don-netf at isis.cs3-inc.com>\n 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: include/linux/netfilter/ipset/ip_set.h\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2011, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_AUDIT.h\nCopyright: 2010-2011, Thomas Graf <tgraf at redhat.com>\n 2010-2011, Red Hat, Inc.\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_CHECKSUM.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\n 2010, Red Hat Inc\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_DSCP.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_IDLETIMER.h\nCopyright: 2004, 2010, Nokia Corporation\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_NFQUEUE.h\nCopyright: 2005, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_connmark.h\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_conntrack.h\nCopyright: 2001, Marc Boucher (marc at mbsi.ca)\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_dscp.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_ecn.h\nCopyright: 2002, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_osf.h\nCopyright: 2003+, Evgeniy Polyakov <johnpol at 2ka.mxt.ru>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4.h\nCopyright: 1998, Rusty Russell\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ip_queue.h\nCopyright: 2000, James Morris\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ECN.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_TTL.h\nCopyright: 2000, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ULOG.h\nCopyright: 2000-2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ttl.h\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv6.h\nCopyright: 1998, Rusty Russell\n 1999, David Jeffery\nLicense: GPL-2\n\nFiles: iptables/iptables-apply\nCopyright: 2006, Martin F. Krafft <madduck at madduck.net>\n 2010, GW <gw.2010 at tnode.com or http://gw.tnode.com/>\nLicense: Artistic\n\nFiles: iptables/iptables-save.c\nCopyright: 1999, Paul 'Rusty' Russell <rusty at rustcorp.com.au>\n 2000-2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: iptables/iptables-xml.c\nCopyright: 2006, Ufo Mechanic <azez at ufomechanic.net>\nLicense: GPL-2\n\nFiles: iptables/nft.c\nCopyright: 2012 Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2+\n\nFiles: iptables/nft-arp.c\nCopyright: 2013 Pablo Neira Ayuso <pablo at netfilter.org>\n 2013 Giuseppe Longo <giuseppelng at gmail.com>\nLicense: GPL-2+\n\nFiles: iptables/nft-bridge.c\nCopyright: 2014 Giuseppe Longo <giuseppelng at gmail.com>\nLicense: GPL-2+\n\nFiles: iptables/nft-ipv4.c iptables/nft-ipv6.c iptables/nft-shared.c\nCopyright: 2012-2013 Pablo Neira Ayuso <pablo at netfilter.org>\n 2013 Tomasz Bursztyka <tomasz.bursztyka at linux.intel.com>\nLicense: GPL-2+\n\nFiles: iptables/xtables-arp.c iptables/xtables-eb.c\nCopyright: 2002 Bart De Schuymer <bdschuym at pandora.be>\nLicense: GPL-2+\n\nFiles: libiptc/libip4tc.c\nCopyright: 1999, Paul ``Rusty'' Russell\nLicense: GPL-2\n\nFiles: libiptc/libip6tc.c\nCopyright: 1999, Paul ``Rusty'' Russell\nLicense: GPL-2\n\nFiles: libiptc/libiptc.c\nCopyright: 1999, Paul ``Rusty'' Russell\n 2000-2004, by the Netfilter Core Team <coreteam at netfilter.org>\n 2003, 2004, Harald Welte <laforge at netfilter.org>\n 2008, Jesper Dangaard Brouer <hawk at comx.dk>\nLicense: GPL-2\n\nFiles: libxtables/xtables.c\nCopyright: 2000-2006, by the netfilter coreteam <coreteam at netfilter.org>\nLicense: GPL-2\n\nFiles: libxtables/xtoptions.c\nCopyright: 2011, Jan Engelhardt\nLicense: GPL-2\n\nFiles: utils/nfsynproxy.c\nCopyright: 2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: utils/pf.os\nCopyright: 2000-2003, Michal Zalewski <lcamtuf at coredump.cx>\n 2003, Mike Frantzen <frantzen at w4g.org>\nLicense: custom\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n\nLicense: GPL-2\n This program is free software; you can redistribute it\n and/or modify it under the terms of the GNU General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later\n version.\n .\n This program is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied\n warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. See the GNU General Public License for more\n details.\n .\n You should have received a copy of the GNU General Public\n License along with this package; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n Boston, MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n On Debian systems, the full text can be found in the file \"/usr/share/common-licenses/Artistic\"\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libxtables12 at 1.8.9-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2002,6 +5590,18 @@
"content": "6c19a5d18c8350744581fbd25d5d29e2b7101053e25aafa4e1ffcc2b505b2f1c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libxxhash0 at 0.8.1-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2018,6 +5618,26 @@
"content": "6315b5ac38b724a710fb96bf1042019398cb656718b1522279a5185ed39318fa"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Zstd\nSource: https://github.com/facebook/zstd\nFiles-Excluded: appveyor.yml\n build/VS2008\n build/VS2010\n build/VS_scripts\n programs/windres/*\n .travis.yml\n .buckversion\n .buckconfig\n .circleci/*\n .cirrus.yml\n\nFiles: *\nCopyright: Yann Collet\n\t Przemyslaw Skibinski\n\t Martin Liska\n\t SUSE\n\t Meta Platforms, Inc. and affiliates\nLicense: BSD-3-clause or GPL-2\nComment: Starting from 1.3.1 zstd's patent claim is removed\n see: https://github.com/facebook/zstd/pull/801\n\nFiles: zlibWrapper/examples/*.c\nCopyright: 1995-2006, 2011 Jean-loup Gailly\nLicense: zlib\n\nFiles: zlibWrapper/gz*.c\nCopyright: (C) 2004, 2005, 2010, 2011, 2012, 2013 Mark Adler\nLicense: zlib\n\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgement in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nFiles: lib/dictBuilder/divsufsort.*\nCopyright: 2003-2008, Yuta Mori\nLicense: Expat\n\nFiles: examples/*\nCopyright: 2016-present, Yann Collet, Facebook, Inc.\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright:\n 2015-2016 Kevin Murray <spam at kdmurray.id.au>\n 2022-2023 Peter Pentchev <roam at debian.org>\nLicense: Expat\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of cereal nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libzstd1 at 1.5.4+dfsg2-5?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2034,6 +5654,31 @@
"content": "86b1f3504cf50fd4873be364c8a4e49a8c28e3442b31963a98a758135283db9d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Shadow\nSource: https://github.com/shadow-maint/shadow\nNote: atudel is licensed under BSD-4-Clause which is not DFSG compatible\nFiles-Excluded: contrib/atudel\n\nFiles: *\nCopyright: 1989-1994, Julianne Frances Haugh\n 2016-2022, Serge Hallyn <serge at hallyn.com>\nLicense: BSD-3-clause\n\nFiles: man/po/da.po\n man/po/de.po\n man/tr/man1/su.1\n po/da.po\n po/de.po\n po/es.po\n po/eu.po\n po/fi.po\n po/gl.po\n po/it.po\n po/kk.po\n po/nb.po\n po/nl.po\n po/nn.po\n po/pl.po\n po/pt_BR.po\n po/ru.po\n po/sq.po\n po/sv.po\n po/vi.po\nCopyright: 1999-2015, Free Software Foundation, Inc\nLicense: BSD-3-clause\n\nFiles: man/fi/man1/chfn.1\n man/id/man1/*\n man/ko/man1/chfn.1\n man/ko/man1/chsh.1\n man/tr/man1/chfn.1\n man/zh_TW/man1/chfn.1\n man/zh_TW/man1/chsh.1\nCopyright: 1994, salvatore valente <svalente at athena.mit.edu>\nLicense: GPL-1\n\nFiles: man/pt_BR/man8/*\n man/zh_TW/man8/usermod.8\nCopyright: 1991-1994, Julianne Frances Haugh\nLicense: BSD-3-clause\n\nFiles: man/hu/man1/gpasswd.1\n man/ja/man1/gpasswd.1\n man/pt_BR/man1/*\nCopyright: 1996, Rafal Maszkowski <rzm at pdi.net>\nLicense: BSD-3-clause\n\nFiles: man/id/man1/login.1\n man/ko/man1/login.1\n man/tr/man1/login.1\nCopyright: 1993, Rickard E. Faith <faith at cs.unc.edu>\nLicense: BSD-3-clause\n\nFiles: man/ja/man1/groups.1\n man/ja/man5/limits.5\n man/ja/man8/vipw.8\nCopyright: 2001, Maki KURODA\nLicense: BSD-3-clause\n\nFiles: man/pt_BR/man5/passwd.5\n man/tr/man5/passwd.5\nCopyright: 1993, Michael Haardt <michael at moria.de>\nLicense: GPL-2+\n\nFiles: man/ja/man1/chage.1\n man/ja/man5/suauth.5\nCopyright: 1997, Kazuyoshi Furutaka\nLicense: BSD-3-clause\n\nFiles: man/po/fr.po\n po/fr.po\nCopyright: 2011-2013, Debian French l10n team <debian-l10n-french at lists.debian.org>\nLicense: BSD-3-clause\n\nFiles: man/zh_TW/man5/*\nCopyright: 1993, Michael Haardt <michael at moria.de>\n 1993, Scorpio, www.linuxforum.net\nLicense: GPL-2+\n\nFiles: contrib/udbachk.tgz\nCopyright: 1999, Sami Kerola and Janne Riihij\u00e4rvi\nLicense: GPL-2+\n\nFiles: man/hu/man5/*\nCopyright: 1993, Michael Haardt <u31b3hs at pool.informatik.rwth-aachen.de>\nLicense: GPL-2+\n\nFiles: contrib/adduser2.sh\nCopyright: 1996, Petri Mattila, Prihateam Networks <petri at prihateam.fi>\nLicense: GPL-2+\n\nFiles: contrib/pwdauth.c\nCopyright: 1996, Marek Michalkiewicz\nLicense: BSD-3-clause\n\nFiles: lib/subordinateio.h\nCopyright: 2012, Eric W. Biederman\nLicense: BSD-3-clause\n\nFiles: libmisc/date_to_str.c\nCopyright: 2021, Alejandro Colomar <alx.manpages at gmail.com>\nLicense: BSD-3-clause\n\nFiles: man/hu/man1/su.1\nCopyright: 1999, Ragnar Hojland Espinosa <ragnar at macula.net>\nLicense: BSD-3-clause\n\nFiles: man/ja/man1/id.1\nCopyright: 2000, ISHIKAWA Keisuke\nLicense: BSD-3-clause\n\nFiles: man/ja/man8/pwconv.8\nCopyright: 2001, Yuichi SATO\nLicense: BSD-3-clause\n\nFiles: src/login_nopam.c\nCopyright: 1995, Wietse Venema\nLicense: BSD-3-clause\n\nFiles: src/su.c\nCopyright: 1989 - 1994, Julianne Frances Haugh\n 1996 - 2000, Marek Micha\u0142kiewicz\n 2000 - 2006, Tomasz K\u0142oczko\n 2007 - 2013, Nicolas Fran\u00e7ois\nLicense: GPL-2+\n\nFiles: src/vipw.c\nCopyright: 1997, Guy Maor <maor at ece.utexas.edu>\n 1999 - 2000, Marek Micha\u0142kiewicz\n 2002 - 2006, Tomasz K\u0142oczko\n 2007 - 2013, Nicolas Fran\u00e7ois\nLicense: GPL-2+\n\nFiles: libmisc/getdate.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\nLicense: public-domain\n Originally written by Steven M. Bellovin <smb at research.att.com> while\n at the University of North Carolina at Chapel Hill. Later tweaked by\n a couple of people on Usenet. Completely overhauled by Rich $alz\n <rsalz at bbn.com> and Jim Berets <jberets at bbn.com> in August, 1990;\n .\n This code is in the public domain and has no copyright.\n\nFiles: man/ko/man5/*\nCopyright: 2000, ASPLINUX <man at asp-linux.co.kr>\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: 1999-2001, Ben Collins <bcollins at debian.org>\n 2001-2004 Karl Ramm <kcr at debian.org>\n 2004-2014 Christian Perrier <bubulle at debian.org>\n 2006-2012 Nicolas Francois (Nekral) <nicolas.francois at centraliens.net>\n 2017-2022 Balint Reczey <balint at balintreczey.hu>\nLicense: BSD-3-clause\n\nFiles: debian/HOME_MODE.xml\nCopyright: 1991-1993, Chip Rosenthal\n 1991-1993, Julianne Frances Haugh\n 2007-2009, Nicolas Fran\u00e7ois\nLicense: BSD-3-clause\n\nFiles: debian/patches/401_cppw_src.dpatch\nCopyright: 1997, Guy Maor <maor at ece.utexas.edu>\n 1999, Stephen Frost <sfrost at snowman.net>\nLicense: GPL-2+\n\nFiles: debian/passwd.expire.cron\nCopyright: 1999, Ben Collins <bcollins at debian.org>\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: GPL-1\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 1\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n .\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/login at 1:4.13+dfsg1-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2050,6 +5695,13 @@
"content": "4e6acd31f55af85b2f12bd61a636c84e19fc1d0f419540b71bbe8aba6985aa32"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0+"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/logrotate at 3.21.0-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2066,6 +5718,59 @@
"content": "245f55e17d9ec050d9a1de80b35bc6b8f64f277b6f12183ff7769be5b3678eb8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/logsave at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2082,6 +5787,23 @@
"content": "bcbc83f391854ea9d50ce2a4101aacf330de3b8b71d81a798faadba14a157f78"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "CC-BY-3.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/mawk at 1.3.4.20200120-3.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2098,6 +5820,71 @@
"content": "f3fe9b80a2dcd2a7f464f3ada4d92b56999c32cd08e25da115cc3c3509e6a901"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/mount at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2114,6 +5901,21 @@
"content": "45a9b3960aa5ac18552459225ec26800abb73fc2edd11626046daf6d968ac968"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV+ OR GPL-3.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: nano\nSource: https://nano-editor.org/dist/\nComment:\n This package was debianized by Jordi Mallach <jordi at debian.org> on\n Wed, 8 Dec 1999 19:39:12 +0100.\n .\n GNU nano main authors are Chris Allegreta <chrisa at asty.org>,\n David Lawrence Ramsey <pooka109 at cox.net> and\n Benno Schulenberg <bensberg at justemail.net>.\n \nFiles: *\nCopyright: \u00a9 1999-2011, 2013-2016 Free Software Foundation, Inc.\n \u00a9 2014-2023 The contributors to GNU nano\nLicense: GPL-3+\n\nFiles: doc/*.1 doc/*.5 doc/*.texi\nCopyright: \u00a9 1999-2011, 2013-2023 Free Software Foundation, Inc.\nLicense: GFDL-NIV+ or GPL-3+\n\nFiles: debian/*\nCopyright: \u00a9 1999-2023 Jordi Mallach <jordi at debian.org>\nLicense: GPL-3+\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: GFDL-NIV+\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n .\n On Debian systems, the complete text of the GNU Free Documentation License\n can be found in /usr/share/common-licenses/GFDL-1.2.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/nano at 7.2-1+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2130,6 +5932,26 @@
"content": "bfd1d89f833c09a28b062ee916495cf69649ca2bf529532476c7b69d75d24909"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "MIT/X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: ncurses\nUpstream-Contact: bug-ncurses at gnu.org\n Thomas Dickey <dickey at his.com>\nSource: https://invisible-mirror.net/archives/ncurses/\n\nFiles: *\nCopyright: 1998-2017,2018 Free Software Foundation, Inc.\n 1996-2020,2021 Thomas E. Dickey\n 2001 Pradeep Padala\nLicense: MIT/X11\n\nFiles: install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n\nFiles: progs/tset.c ncurses/tinfo/read_termcap.c\nCopyright: 1980,1991,1992,1993 The Regents of the University of California\nLicense: BSD-3-clause\n\nLicense: MIT/X11\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, distribute with modifications, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name(s) of the above copyright\n holders shall not be used in advertising or otherwise to promote the\n sale, use or other dealings in this Software without prior written\n authorization.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/ncurses-base at 6.4-4?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2146,6 +5968,26 @@
"content": "396d6e453aee6d71b7141f0bfb333a6c08a44c64f77632bdf52894ccd123db46"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "MIT/X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: ncurses\nUpstream-Contact: bug-ncurses at gnu.org\n Thomas Dickey <dickey at his.com>\nSource: https://invisible-mirror.net/archives/ncurses/\n\nFiles: *\nCopyright: 1998-2017,2018 Free Software Foundation, Inc.\n 1996-2020,2021 Thomas E. Dickey\n 2001 Pradeep Padala\nLicense: MIT/X11\n\nFiles: install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n\nFiles: progs/tset.c ncurses/tinfo/read_termcap.c\nCopyright: 1980,1991,1992,1993 The Regents of the University of California\nLicense: BSD-3-clause\n\nLicense: MIT/X11\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, distribute with modifications, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name(s) of the above copyright\n holders shall not be used in advertising or otherwise to promote the\n sale, use or other dealings in this Software without prior written\n authorization.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/ncurses-bin at 6.4-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2162,6 +6004,13 @@
"content": "29b23c48c0fe6f878e56c5ddc9f65d1c05d729360f3690a593a8c795031cd867"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/netbase at 6.4?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2178,6 +6027,23 @@
"content": "966ff20ce58c17163a771c02ddbca264291408f94c512bd85dd18da0ebdbe88c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC-BY-SA-4.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/nftables at 1.0.6-2+deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2194,6 +6060,31 @@
"content": "343b60a755ceb2c3687f9a5c9c9dc00eea0e44a7de49a537c36df17894f784b3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Shadow\nSource: https://github.com/shadow-maint/shadow\nNote: atudel is licensed under BSD-4-Clause which is not DFSG compatible\nFiles-Excluded: contrib/atudel\n\nFiles: *\nCopyright: 1989-1994, Julianne Frances Haugh\n 2016-2022, Serge Hallyn <serge at hallyn.com>\nLicense: BSD-3-clause\n\nFiles: man/po/da.po\n man/po/de.po\n man/tr/man1/su.1\n po/da.po\n po/de.po\n po/es.po\n po/eu.po\n po/fi.po\n po/gl.po\n po/it.po\n po/kk.po\n po/nb.po\n po/nl.po\n po/nn.po\n po/pl.po\n po/pt_BR.po\n po/ru.po\n po/sq.po\n po/sv.po\n po/vi.po\nCopyright: 1999-2015, Free Software Foundation, Inc\nLicense: BSD-3-clause\n\nFiles: man/fi/man1/chfn.1\n man/id/man1/*\n man/ko/man1/chfn.1\n man/ko/man1/chsh.1\n man/tr/man1/chfn.1\n man/zh_TW/man1/chfn.1\n man/zh_TW/man1/chsh.1\nCopyright: 1994, salvatore valente <svalente at athena.mit.edu>\nLicense: GPL-1\n\nFiles: man/pt_BR/man8/*\n man/zh_TW/man8/usermod.8\nCopyright: 1991-1994, Julianne Frances Haugh\nLicense: BSD-3-clause\n\nFiles: man/hu/man1/gpasswd.1\n man/ja/man1/gpasswd.1\n man/pt_BR/man1/*\nCopyright: 1996, Rafal Maszkowski <rzm at pdi.net>\nLicense: BSD-3-clause\n\nFiles: man/id/man1/login.1\n man/ko/man1/login.1\n man/tr/man1/login.1\nCopyright: 1993, Rickard E. Faith <faith at cs.unc.edu>\nLicense: BSD-3-clause\n\nFiles: man/ja/man1/groups.1\n man/ja/man5/limits.5\n man/ja/man8/vipw.8\nCopyright: 2001, Maki KURODA\nLicense: BSD-3-clause\n\nFiles: man/pt_BR/man5/passwd.5\n man/tr/man5/passwd.5\nCopyright: 1993, Michael Haardt <michael at moria.de>\nLicense: GPL-2+\n\nFiles: man/ja/man1/chage.1\n man/ja/man5/suauth.5\nCopyright: 1997, Kazuyoshi Furutaka\nLicense: BSD-3-clause\n\nFiles: man/po/fr.po\n po/fr.po\nCopyright: 2011-2013, Debian French l10n team <debian-l10n-french at lists.debian.org>\nLicense: BSD-3-clause\n\nFiles: man/zh_TW/man5/*\nCopyright: 1993, Michael Haardt <michael at moria.de>\n 1993, Scorpio, www.linuxforum.net\nLicense: GPL-2+\n\nFiles: contrib/udbachk.tgz\nCopyright: 1999, Sami Kerola and Janne Riihij\u00e4rvi\nLicense: GPL-2+\n\nFiles: man/hu/man5/*\nCopyright: 1993, Michael Haardt <u31b3hs at pool.informatik.rwth-aachen.de>\nLicense: GPL-2+\n\nFiles: contrib/adduser2.sh\nCopyright: 1996, Petri Mattila, Prihateam Networks <petri at prihateam.fi>\nLicense: GPL-2+\n\nFiles: contrib/pwdauth.c\nCopyright: 1996, Marek Michalkiewicz\nLicense: BSD-3-clause\n\nFiles: lib/subordinateio.h\nCopyright: 2012, Eric W. Biederman\nLicense: BSD-3-clause\n\nFiles: libmisc/date_to_str.c\nCopyright: 2021, Alejandro Colomar <alx.manpages at gmail.com>\nLicense: BSD-3-clause\n\nFiles: man/hu/man1/su.1\nCopyright: 1999, Ragnar Hojland Espinosa <ragnar at macula.net>\nLicense: BSD-3-clause\n\nFiles: man/ja/man1/id.1\nCopyright: 2000, ISHIKAWA Keisuke\nLicense: BSD-3-clause\n\nFiles: man/ja/man8/pwconv.8\nCopyright: 2001, Yuichi SATO\nLicense: BSD-3-clause\n\nFiles: src/login_nopam.c\nCopyright: 1995, Wietse Venema\nLicense: BSD-3-clause\n\nFiles: src/su.c\nCopyright: 1989 - 1994, Julianne Frances Haugh\n 1996 - 2000, Marek Micha\u0142kiewicz\n 2000 - 2006, Tomasz K\u0142oczko\n 2007 - 2013, Nicolas Fran\u00e7ois\nLicense: GPL-2+\n\nFiles: src/vipw.c\nCopyright: 1997, Guy Maor <maor at ece.utexas.edu>\n 1999 - 2000, Marek Micha\u0142kiewicz\n 2002 - 2006, Tomasz K\u0142oczko\n 2007 - 2013, Nicolas Fran\u00e7ois\nLicense: GPL-2+\n\nFiles: libmisc/getdate.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\nLicense: public-domain\n Originally written by Steven M. Bellovin <smb at research.att.com> while\n at the University of North Carolina at Chapel Hill. Later tweaked by\n a couple of people on Usenet. Completely overhauled by Rich $alz\n <rsalz at bbn.com> and Jim Berets <jberets at bbn.com> in August, 1990;\n .\n This code is in the public domain and has no copyright.\n\nFiles: man/ko/man5/*\nCopyright: 2000, ASPLINUX <man at asp-linux.co.kr>\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: 1999-2001, Ben Collins <bcollins at debian.org>\n 2001-2004 Karl Ramm <kcr at debian.org>\n 2004-2014 Christian Perrier <bubulle at debian.org>\n 2006-2012 Nicolas Francois (Nekral) <nicolas.francois at centraliens.net>\n 2017-2022 Balint Reczey <balint at balintreczey.hu>\nLicense: BSD-3-clause\n\nFiles: debian/HOME_MODE.xml\nCopyright: 1991-1993, Chip Rosenthal\n 1991-1993, Julianne Frances Haugh\n 2007-2009, Nicolas Fran\u00e7ois\nLicense: BSD-3-clause\n\nFiles: debian/patches/401_cppw_src.dpatch\nCopyright: 1997, Guy Maor <maor at ece.utexas.edu>\n 1999, Stephen Frost <sfrost at snowman.net>\nLicense: GPL-2+\n\nFiles: debian/passwd.expire.cron\nCopyright: 1999, Ben Collins <bcollins at debian.org>\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: GPL-1\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 1\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n .\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/passwd at 1:4.13+dfsg1-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2210,6 +6101,185 @@
"content": "b4327c2d8e2ca92402205ac6b5845b3110fa2a1d50925c0e61c39624583a8baf"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "name": "REGCOMP, AND GPL-1.0+ OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3+-WITH-BISON-EXCEPTION",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Unicode",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic, AND Unicode",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BZIP",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR GPL-1.0+ OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "RRA-KEEP-THIS-NOTICE",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-with-weird-numbering",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "TEXT-TABS",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic, AND BSD-4-clause-POWERDOG",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic, AND BSD-3-clause-GENERIC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "SDBM-PUBLIC-DOMAIN",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "DONT-CHANGE-THE-GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic-1.0 OR Artistic-dist",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-dist",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+ OR Artistic-dist",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic, AND MIT",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n >From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/perl-base at 5.36.0-7+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2226,6 +6296,26 @@
"content": "d9d0e75779cb79af869181f17b93c5c263a2b89cac6a0193c436160a4483ddc1"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: procps-ng\nSource: https://gitlab.com/procps-ng/procps\n\nFiles: *\nCopyright: 1998-2004 Albert Cahalan\n 1991 Tony Rems <rembo at unisoft.com>\n 1993 Larry Greenfield\n 1996 Charles Blake\n 1999 Mike Coleman <mkc at acm.org>\n 2004 Nicholas Miell\n 2003 Chris Rivera\n 2003 Robert Love <rml at tech9.net>\n 2008 Morty Abzug\n 2009 Jarrod Lowe <procps at rrod.net>\n 1992 Branko Lankester\n ???? David Engel <david at ods.com>\n 1992-1998 Michael K. Johnson <johnsonm at sunsite.unc.edu>\n 2012-2022 Craig Small <csmall at enc.com.au>\n 1995 Martin Schulze <joey at infodrom.north.de>\nLicense: LGPL-2.1+\n\nFiles: src/top/*\nCopyright: 2002-2022 James C. Warner\nLicense: LGPL-2.0+\n\nFiles: src/pgrep.*\nCopyright: 2000 Kjetil Torgrim Homme <kjetilho at ifi.uio.no>\n 2002,2006 Albert Cahalan\n 2012 Roberto Polli <rpolli at babel.it>\nLicense: GPL-2.0+\n\nFiles: src/pidof.*\nCopyright: 2013 Jaromir Capik <jcapik at redhat.com>\nLicense: GPL-2.0+\n\nFiles: src/free.*\nCopyright: 2011 Sami Kerola <kerolasa at iki.fi>\n 2002-2003 Robert Love <rml at tech9.net>\n 1992 Brian Edmonds\n 1992 Rafal Maszkowski\n 2004 Albert Cahalan\nLicense: GPL-2.0+\n\nFiles: src/sysctl.*\nCopyright: 1999 George Staikos\nLicense: GPL-2.0+\n\nFiles: debian/*\nCopyright: 1997-2022 Craig Small <csmall at debian.org>\n 1996-1997 Helmut Geyer <Helmut.Geyer at iwr.uni-heidelberg.de>\nLicense: GPL-2.0+\n\nLicense: GPL-2.0+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2.0+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-2\".\n\nLicense: LGPL-2.1+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-2.1\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/procps at 2:4.0.2-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2242,6 +6332,39 @@
"content": "69317523fe56429aa361545416ad339d138c1500e5a604856a80dd9074b4e35c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU\n Readline library.\n .\n This package was put together by Matthias Klose <doko at debian.org>,\n derived from the bash package by Guy Maor <maor at debian.org>.\nUpstream-Name: Readline\nUpstream-Contact: \n Chet Ramey <chet.ramey at case.edu>\n Jeff Solomon <jsolomon at stanford.edu> (examples/excallback.c)\n Harold Levy <Harold.Levy at synopsys.com> (examples/rl-fgets.c)\nSource: http://ftp.gnu.org/gnu/readline/\n\nFiles: *\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n Readline is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Readline. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: examples/readlinebuf.h\n examples/rl-fgets.c\n examples/rlfe/*\n examples/rlwrap-*.tar.gz\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\n Copyright (c) 2001 by Dimitris Vyzovitis [vyzo at media.mit.edu]\n Copyright (C) 1999 Jeff Solomon (examples/excallback.c)\n Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c)\n Copyright (c) 1993-2002 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n Copyright (c) 1993-2002 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n Copyright (C) 1987 Oliver Laumann (examples/rlfe)\n Copyright (C) 2004, 1999 Per Bothner\n Copyright (C) 2000-2007 Hans Lub\n Copyright (C) 1999-2001 Geoff Wing\n Copyright (C) Damian Ivereigh 2000\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program (see the file COPYING); if not, write to the\n Free Software Foundation, Inc.,\n 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n The rlwrap example is also available in its own Debian package.\n The code copyrighted by Damian Ivereigh is licensed under LGPL-2.1+.\n\nFiles: doc/*.texi doc/*.info doc/*.html doc/*.[03] doc/*.dvi doc/*.pdf doc/*.ps\nCopyright:\n Copyright (C) 1988-2015 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL'.\n\nFiles: support/wcwidth.c\nCopyright: Markus Kuhn\nLicense: ISC-no-attribution\n Permission to use, copy, modify, and distribute this software\n for any purpose and without fee is hereby granted. The author\n disclaims all warranties with regard to this software.\n\nFiles: debian/*\nCopyright:\n Copyright (C) 1999-2009 Matthias Klose <doko at debian.org>\nLicense: GPL-3\n The Debian packaging is licensed under the GPL version 3, \n see `/usr/share/common-licenses/GPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "ISC-no-attribution",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU\n Readline library.\n .\n This package was put together by Matthias Klose <doko at debian.org>,\n derived from the bash package by Guy Maor <maor at debian.org>.\nUpstream-Name: Readline\nUpstream-Contact: \n Chet Ramey <chet.ramey at case.edu>\n Jeff Solomon <jsolomon at stanford.edu> (examples/excallback.c)\n Harold Levy <Harold.Levy at synopsys.com> (examples/rl-fgets.c)\nSource: http://ftp.gnu.org/gnu/readline/\n\nFiles: *\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n Readline is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Readline. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: examples/readlinebuf.h\n examples/rl-fgets.c\n examples/rlfe/*\n examples/rlwrap-*.tar.gz\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\n Copyright (c) 2001 by Dimitris Vyzovitis [vyzo at media.mit.edu]\n Copyright (C) 1999 Jeff Solomon (examples/excallback.c)\n Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c)\n Copyright (c) 1993-2002 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n Copyright (c) 1993-2002 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n Copyright (C) 1987 Oliver Laumann (examples/rlfe)\n Copyright (C) 2004, 1999 Per Bothner\n Copyright (C) 2000-2007 Hans Lub\n Copyright (C) 1999-2001 Geoff Wing\n Copyright (C) Damian Ivereigh 2000\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program (see the file COPYING); if not, write to the\n Free Software Foundation, Inc.,\n 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n The rlwrap example is also available in its own Debian package.\n The code copyrighted by Damian Ivereigh is licensed under LGPL-2.1+.\n\nFiles: doc/*.texi doc/*.info doc/*.html doc/*.[03] doc/*.dvi doc/*.pdf doc/*.ps\nCopyright:\n Copyright (C) 1988-2015 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL'.\n\nFiles: support/wcwidth.c\nCopyright: Markus Kuhn\nLicense: ISC-no-attribution\n Permission to use, copy, modify, and distribute this software\n for any purpose and without fee is hereby granted. The author\n disclaims all warranties with regard to this software.\n\nFiles: debian/*\nCopyright:\n Copyright (C) 1999-2009 Matthias Klose <doko at debian.org>\nLicense: GPL-3\n The Debian packaging is licensed under the GPL version 3, \n see `/usr/share/common-licenses/GPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/readline-common at 8.2-1.3?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2258,6 +6381,55 @@
"content": "177cacdfe9508448d84bf25534a87a7fcc058d8e2dcd422672851ea13f2115df"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU sed\nSource: ftp://ftp.gnu.org/gnu/sed/\nComment: This is the Debian GNU/Linux prepackaged version of sed.\n It is currently maintained by Clint Adams <clint at debian.org>.\n\nFiles: *\n doc/local.mk\nCopyright: 1989-2020 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: GPL-3+\n GNU sed is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n On Debian GNU/Linux systems you can find a copy of the GPL in\n /usr/share/common-licenses/GPL-3\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: doc/*\nCopyright: 1998-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian GNU/Linux systems you can find a copy of the GFDL in\n /usr/share/common-licenses/GFDL-1.3\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.\n (c) 1996,1999 by Internet Software Consortium.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles: testsuite/bsd.sh\nCopyright: (c) 1992 Diomidis Spinellis.\n (c) 1992, 1993 The Regents of the University of California. All rights reserved.\nLicense: BSD-4-clause-UC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. <deleted>\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: testsuite/BOOST.tests\nCopyright: 2004 John Maddock\nComment: Tests taken from BOOST testsuite and adapted to glibc regex.\nLicense: BSL-1\n Boost Software License - Version 1.0 - August 17th, 2003\n .\n Permission is hereby granted, free of charge, to any person or organization\n obtaining a copy of the software and accompanying documentation covered by\n this license (the \"Software\") to use, reproduce, display, distribute,\n execute, and transmit the Software, and to prepare derivative works of the\n Software, and to permit third-parties to whom the Software is furnished to\n do so, all subject to the following:\n .\n The copyright notices in the Software and this entire statement, including\n the above license grant, this restriction and the following disclaimer,\n must be included in all copies of the Software, in whole or in part, and\n all derivative works of the Software, unless such copies or derivative\n works are solely in the form of machine-executable object code generated by\n a source language processor.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\n SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\n FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nFiles: testsuite/PCRE.tests\nCopyright: 1997-2003 University of Cambridge\nLicense: pcre\n Permission is granted to anyone to use this software for any purpose on any\n computer system, and to redistribute it freely, subject to the following\n restrictions:\n .\n 1. This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n .\n 2. The origin of this software must not be misrepresented, either by\n explicit claim or by omission. In practice, this means that if you use\n PCRE in software that you distribute to others, commercially or\n otherwise, you must put a sentence like this\n .\n Regular expression support is provided by the PCRE library package,\n which is open source software, written by Philip Hazel, and copyright\n by the University of Cambridge, England.\n .\n somewhere reasonably visible in your documentation and in any relevant\n files or online help data or similar. A reference to the ftp site for\n the source, that is, to\n .\n ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\n .\n should also be given in the documentation. However, this condition is not\n intended to apply to whole chains of software. If package A includes PCRE,\n it must acknowledge it, but if package B is software that includes package\n A, the condition is not imposed on package B (unless it uses PCRE\n independently).\n .\n 3. Altered versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n .\n 4. If PCRE is embedded in any software that is released under the GNU\n General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\n then the terms of that licence shall supersede any condition above with\n which it is incompatible.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-4-clause-UC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU sed\nSource: ftp://ftp.gnu.org/gnu/sed/\nComment: This is the Debian GNU/Linux prepackaged version of sed.\n It is currently maintained by Clint Adams <clint at debian.org>.\n\nFiles: *\n doc/local.mk\nCopyright: 1989-2020 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: GPL-3+\n GNU sed is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n On Debian GNU/Linux systems you can find a copy of the GPL in\n /usr/share/common-licenses/GPL-3\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: doc/*\nCopyright: 1998-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian GNU/Linux systems you can find a copy of the GFDL in\n /usr/share/common-licenses/GFDL-1.3\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.\n (c) 1996,1999 by Internet Software Consortium.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles: testsuite/bsd.sh\nCopyright: (c) 1992 Diomidis Spinellis.\n (c) 1992, 1993 The Regents of the University of California. All rights reserved.\nLicense: BSD-4-clause-UC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. <deleted>\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: testsuite/BOOST.tests\nCopyright: 2004 John Maddock\nComment: Tests taken from BOOST testsuite and adapted to glibc regex.\nLicense: BSL-1\n Boost Software License - Version 1.0 - August 17th, 2003\n .\n Permission is hereby granted, free of charge, to any person or organization\n obtaining a copy of the software and accompanying documentation covered by\n this license (the \"Software\") to use, reproduce, display, distribute,\n execute, and transmit the Software, and to prepare derivative works of the\n Software, and to permit third-parties to whom the Software is furnished to\n do so, all subject to the following:\n .\n The copyright notices in the Software and this entire statement, including\n the above license grant, this restriction and the following disclaimer,\n must be included in all copies of the Software, in whole or in part, and\n all derivative works of the Software, unless such copies or derivative\n works are solely in the form of machine-executable object code generated by\n a source language processor.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\n SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\n FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nFiles: testsuite/PCRE.tests\nCopyright: 1997-2003 University of Cambridge\nLicense: pcre\n Permission is granted to anyone to use this software for any purpose on any\n computer system, and to redistribute it freely, subject to the following\n restrictions:\n .\n 1. This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n .\n 2. The origin of this software must not be misrepresented, either by\n explicit claim or by omission. In practice, this means that if you use\n PCRE in software that you distribute to others, commercially or\n otherwise, you must put a sentence like this\n .\n Regular expression support is provided by the PCRE library package,\n which is open source software, written by Philip Hazel, and copyright\n by the University of Cambridge, England.\n .\n somewhere reasonably visible in your documentation and in any relevant\n files or online help data or similar. A reference to the ftp site for\n the source, that is, to\n .\n ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\n .\n should also be given in the documentation. However, this condition is not\n intended to apply to whole chains of software. If package A includes PCRE,\n it must acknowledge it, but if package B is software that includes package\n A, the condition is not imposed on package B (unless it uses PCRE\n independently).\n .\n 3. Altered versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n .\n 4. If PCRE is embedded in any software that is released under the GNU\n General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\n then the terms of that licence shall supersede any condition above with\n which it is incompatible.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU sed\nSource: ftp://ftp.gnu.org/gnu/sed/\nComment: This is the Debian GNU/Linux prepackaged version of sed.\n It is currently maintained by Clint Adams <clint at debian.org>.\n\nFiles: *\n doc/local.mk\nCopyright: 1989-2020 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: GPL-3+\n GNU sed is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n On Debian GNU/Linux systems you can find a copy of the GPL in\n /usr/share/common-licenses/GPL-3\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: doc/*\nCopyright: 1998-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian GNU/Linux systems you can find a copy of the GFDL in\n /usr/share/common-licenses/GFDL-1.3\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.\n (c) 1996,1999 by Internet Software Consortium.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles: testsuite/bsd.sh\nCopyright: (c) 1992 Diomidis Spinellis.\n (c) 1992, 1993 The Regents of the University of California. All rights reserved.\nLicense: BSD-4-clause-UC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. <deleted>\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: testsuite/BOOST.tests\nCopyright: 2004 John Maddock\nComment: Tests taken from BOOST testsuite and adapted to glibc regex.\nLicense: BSL-1\n Boost Software License - Version 1.0 - August 17th, 2003\n .\n Permission is hereby granted, free of charge, to any person or organization\n obtaining a copy of the software and accompanying documentation covered by\n this license (the \"Software\") to use, reproduce, display, distribute,\n execute, and transmit the Software, and to prepare derivative works of the\n Software, and to permit third-parties to whom the Software is furnished to\n do so, all subject to the following:\n .\n The copyright notices in the Software and this entire statement, including\n the above license grant, this restriction and the following disclaimer,\n must be included in all copies of the Software, in whole or in part, and\n all derivative works of the Software, unless such copies or derivative\n works are solely in the form of machine-executable object code generated by\n a source language processor.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\n SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\n FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nFiles: testsuite/PCRE.tests\nCopyright: 1997-2003 University of Cambridge\nLicense: pcre\n Permission is granted to anyone to use this software for any purpose on any\n computer system, and to redistribute it freely, subject to the following\n restrictions:\n .\n 1. This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n .\n 2. The origin of this software must not be misrepresented, either by\n explicit claim or by omission. In practice, this means that if you use\n PCRE in software that you distribute to others, commercially or\n otherwise, you must put a sentence like this\n .\n Regular expression support is provided by the PCRE library package,\n which is open source software, written by Philip Hazel, and copyright\n by the University of Cambridge, England.\n .\n somewhere reasonably visible in your documentation and in any relevant\n files or online help data or similar. A reference to the ftp site for\n the source, that is, to\n .\n ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\n .\n should also be given in the documentation. However, this condition is not\n intended to apply to whole chains of software. If package A includes PCRE,\n it must acknowledge it, but if package B is software that includes package\n A, the condition is not imposed on package B (unless it uses PCRE\n independently).\n .\n 3. Altered versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n .\n 4. If PCRE is embedded in any software that is released under the GNU\n General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\n then the terms of that licence shall supersede any condition above with\n which it is incompatible.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "pcre",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU sed\nSource: ftp://ftp.gnu.org/gnu/sed/\nComment: This is the Debian GNU/Linux prepackaged version of sed.\n It is currently maintained by Clint Adams <clint at debian.org>.\n\nFiles: *\n doc/local.mk\nCopyright: 1989-2020 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: GPL-3+\n GNU sed is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n On Debian GNU/Linux systems you can find a copy of the GPL in\n /usr/share/common-licenses/GPL-3\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: doc/*\nCopyright: 1998-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian GNU/Linux systems you can find a copy of the GFDL in\n /usr/share/common-licenses/GFDL-1.3\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.\n (c) 1996,1999 by Internet Software Consortium.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles: testsuite/bsd.sh\nCopyright: (c) 1992 Diomidis Spinellis.\n (c) 1992, 1993 The Regents of the University of California. All rights reserved.\nLicense: BSD-4-clause-UC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. <deleted>\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: testsuite/BOOST.tests\nCopyright: 2004 John Maddock\nComment: Tests taken from BOOST testsuite and adapted to glibc regex.\nLicense: BSL-1\n Boost Software License - Version 1.0 - August 17th, 2003\n .\n Permission is hereby granted, free of charge, to any person or organization\n obtaining a copy of the software and accompanying documentation covered by\n this license (the \"Software\") to use, reproduce, display, distribute,\n execute, and transmit the Software, and to prepare derivative works of the\n Software, and to permit third-parties to whom the Software is furnished to\n do so, all subject to the following:\n .\n The copyright notices in the Software and this entire statement, including\n the above license grant, this restriction and the following disclaimer,\n must be included in all copies of the Software, in whole or in part, and\n all derivative works of the Software, unless such copies or derivative\n works are solely in the form of machine-executable object code generated by\n a source language processor.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\n SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\n FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nFiles: testsuite/PCRE.tests\nCopyright: 1997-2003 University of Cambridge\nLicense: pcre\n Permission is granted to anyone to use this software for any purpose on any\n computer system, and to redistribute it freely, subject to the following\n restrictions:\n .\n 1. This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n .\n 2. The origin of this software must not be misrepresented, either by\n explicit claim or by omission. In practice, this means that if you use\n PCRE in software that you distribute to others, commercially or\n otherwise, you must put a sentence like this\n .\n Regular expression support is provided by the PCRE library package,\n which is open source software, written by Philip Hazel, and copyright\n by the University of Cambridge, England.\n .\n somewhere reasonably visible in your documentation and in any relevant\n files or online help data or similar. A reference to the ftp site for\n the source, that is, to\n .\n ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\n .\n should also be given in the documentation. However, this condition is not\n intended to apply to whole chains of software. If package A includes PCRE,\n it must acknowledge it, but if package B is software that includes package\n A, the condition is not imposed on package B (unless it uses PCRE\n independently).\n .\n 3. Altered versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n .\n 4. If PCRE is embedded in any software that is released under the GNU\n General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\n then the terms of that licence shall supersede any condition above with\n which it is incompatible.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/sed at 4.9-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2270,8 +6442,39 @@
"content": "d617862548d914db9da74cf2b79f5e00"
},
{
- "alg": "SHA-256",
- "content": "e0e66f783996ec4670ed5041c446160ec671c723d4be47d3bc27af93c2958a76"
+ "alg": "SHA-256",
+ "content": "e0e66f783996ec4670ed5041c446160ec671c723d4be47d3bc27af93c2958a76"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "All-permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: sensible-utils\nSource: https://salsa.debian.org/debian/sensible-utils\n\nFiles: *\nCopyright: 2002-2009, Clint Adams <schizo at debian.org>\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2012, David Pr\u00e9vot <taffit at debian.org>\n 2013, Thorsten Glaser\n 2017, J\u00e9r\u00e9my Bobbio\n 2017, Ximin Luo\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-editor*\nCopyright: 1997, Guy Maor\n 2002, 2004, 2006, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-pager*\nCopyright: 1997, 1998, Guy Maor\n 2004, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-browser*\nCopyright: 2002, Joey Hess\n 2003, 2007, 2008, Clint Adams\n 2007 Jaari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: select-editor*\nCopyright: 2009, Dustin Kirkland <kirkland at canonical.com>.\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\nLicense: GPL-2+\n\nFiles: man/Makefile.am\n man/utf8toman.sed\nCopyright: 2012-2017, Guillaume Jover\nLicense: GPL-2+\nComment: Part of this are copied from dpkg\n\nFiles: man/po4a/cs*\nCopyright: 2012, Michal Simunek\nLicense: GPL-2+\n\nFiles: man/po4a/de*\nCopyright: 2011, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-2+\n\nFiles: man/po4a/fr*\nCopyright: Nicolas Fran\u00e7ois <nicolas.francois at centraliens.net>\n 2017- Bastien Roucari\u00e8s\nLicense: GPL-2+\n\nFiles: man/po4a/es*\nCopyright: 2010-2012, Omar Campagne\nLicense: GPL-2+\n\nFiles: man/po4a/it*\nCopyright: 2012, Beatrice Torracca\nLicense: GPL-2+\n\nFiles: man/po4a/ja*\nCopyright: 2010, Kurasawa Nozomu\nLicense: GPL-2+\n\nFiles: man/po4a/pl*\nCopyright: 2004, 2010, Robert Luberda <robert at debian.org>.\nLicense: GPL-2+\n\nFiles: man/po4a/pt*\nCopyright: 2014, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\nLicense: GPL-2+\n\nFiles: aclocal.m4\nCopyright: 1996-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: *Makefile.in\nCopyright: 1994-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: configure\nCopyright: 1992-1996, 1998-2012, Free Software Foundation, Inc.\nLicense: configure\n This configure script is free software; the Free Software Foundation\n gives unlimited permission to copy, distribute and modify it.\n\nFiles: build-aux/missing\nCopyright: 1996-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/test-driver\nCopyright: 2011-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: installsh\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n FSF changes to this file are in the public domain.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: All-permissive\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n PARTICULAR PURPOSE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "configure",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: sensible-utils\nSource: https://salsa.debian.org/debian/sensible-utils\n\nFiles: *\nCopyright: 2002-2009, Clint Adams <schizo at debian.org>\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2012, David Pr\u00e9vot <taffit at debian.org>\n 2013, Thorsten Glaser\n 2017, J\u00e9r\u00e9my Bobbio\n 2017, Ximin Luo\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-editor*\nCopyright: 1997, Guy Maor\n 2002, 2004, 2006, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-pager*\nCopyright: 1997, 1998, Guy Maor\n 2004, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-browser*\nCopyright: 2002, Joey Hess\n 2003, 2007, 2008, Clint Adams\n 2007 Jaari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: select-editor*\nCopyright: 2009, Dustin Kirkland <kirkland at canonical.com>.\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\nLicense: GPL-2+\n\nFiles: man/Makefile.am\n man/utf8toman.sed\nCopyright: 2012-2017, Guillaume Jover\nLicense: GPL-2+\nComment: Part of this are copied from dpkg\n\nFiles: man/po4a/cs*\nCopyright: 2012, Michal Simunek\nLicense: GPL-2+\n\nFiles: man/po4a/de*\nCopyright: 2011, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-2+\n\nFiles: man/po4a/fr*\nCopyright: Nicolas Fran\u00e7ois <nicolas.francois at centraliens.net>\n 2017- Bastien Roucari\u00e8s\nLicense: GPL-2+\n\nFiles: man/po4a/es*\nCopyright: 2010-2012, Omar Campagne\nLicense: GPL-2+\n\nFiles: man/po4a/it*\nCopyright: 2012, Beatrice Torracca\nLicense: GPL-2+\n\nFiles: man/po4a/ja*\nCopyright: 2010, Kurasawa Nozomu\nLicense: GPL-2+\n\nFiles: man/po4a/pl*\nCopyright: 2004, 2010, Robert Luberda <robert at debian.org>.\nLicense: GPL-2+\n\nFiles: man/po4a/pt*\nCopyright: 2014, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\nLicense: GPL-2+\n\nFiles: aclocal.m4\nCopyright: 1996-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: *Makefile.in\nCopyright: 1994-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: configure\nCopyright: 1992-1996, 1998-2012, Free Software Foundation, Inc.\nLicense: configure\n This configure script is free software; the Free Software Foundation\n gives unlimited permission to copy, distribute and modify it.\n\nFiles: build-aux/missing\nCopyright: 1996-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/test-driver\nCopyright: 2011-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: installsh\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n FSF changes to this file are in the public domain.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: All-permissive\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n PARTICULAR PURPOSE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "installsh",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: sensible-utils\nSource: https://salsa.debian.org/debian/sensible-utils\n\nFiles: *\nCopyright: 2002-2009, Clint Adams <schizo at debian.org>\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2012, David Pr\u00e9vot <taffit at debian.org>\n 2013, Thorsten Glaser\n 2017, J\u00e9r\u00e9my Bobbio\n 2017, Ximin Luo\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-editor*\nCopyright: 1997, Guy Maor\n 2002, 2004, 2006, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-pager*\nCopyright: 1997, 1998, Guy Maor\n 2004, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-browser*\nCopyright: 2002, Joey Hess\n 2003, 2007, 2008, Clint Adams\n 2007 Jaari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: select-editor*\nCopyright: 2009, Dustin Kirkland <kirkland at canonical.com>.\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\nLicense: GPL-2+\n\nFiles: man/Makefile.am\n man/utf8toman.sed\nCopyright: 2012-2017, Guillaume Jover\nLicense: GPL-2+\nComment: Part of this are copied from dpkg\n\nFiles: man/po4a/cs*\nCopyright: 2012, Michal Simunek\nLicense: GPL-2+\n\nFiles: man/po4a/de*\nCopyright: 2011, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-2+\n\nFiles: man/po4a/fr*\nCopyright: Nicolas Fran\u00e7ois <nicolas.francois at centraliens.net>\n 2017- Bastien Roucari\u00e8s\nLicense: GPL-2+\n\nFiles: man/po4a/es*\nCopyright: 2010-2012, Omar Campagne\nLicense: GPL-2+\n\nFiles: man/po4a/it*\nCopyright: 2012, Beatrice Torracca\nLicense: GPL-2+\n\nFiles: man/po4a/ja*\nCopyright: 2010, Kurasawa Nozomu\nLicense: GPL-2+\n\nFiles: man/po4a/pl*\nCopyright: 2004, 2010, Robert Luberda <robert at debian.org>.\nLicense: GPL-2+\n\nFiles: man/po4a/pt*\nCopyright: 2014, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\nLicense: GPL-2+\n\nFiles: aclocal.m4\nCopyright: 1996-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: *Makefile.in\nCopyright: 1994-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: configure\nCopyright: 1992-1996, 1998-2012, Free Software Foundation, Inc.\nLicense: configure\n This configure script is free software; the Free Software Foundation\n gives unlimited permission to copy, distribute and modify it.\n\nFiles: build-aux/missing\nCopyright: 1996-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/test-driver\nCopyright: 2011-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: installsh\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n FSF changes to this file are in the public domain.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: All-permissive\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n PARTICULAR PURPOSE.\n"
+ }
+ }
}
],
"purl": "pkg:deb/debian/sensible-utils at 0.0.17+nmu1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
@@ -2290,6 +6493,38 @@
"content": "481a0b837aa3ce9871773b59755e039c0fd15a801f84ce4e607b54596480f875"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/systemd at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2306,6 +6541,38 @@
"content": "fff5012ff0022b485b039e5849ae8dbcdeff19d93c2aca842865b3293af0fb53"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/systemd-sysv at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2322,6 +6589,26 @@
"content": "11790842108768ec52432ea22e7b4f057232813b7c27ef6dfe1aba776a5cb90e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: sysvinit\nUpstream-Contact: sysvinit-devel at nongnu.org\nSource: https://download.savannah.gnu.org/releases/sysvinit/\n\nFiles: *\nCopyright: 1989, 1991 Free Software Foundation, Inc.\n 1997-2005 Miquel van Smoorenburg <miquels at cistron.nl>\n 1998 Danek Duvall\n 2003 Theodore Ts'o\n 2009, 2011, 2012 the sysvinit's copyright holder\n 2010 Michael Krapp\n 2011 SuSE LINUX Products GmbH\n 2017-2019 Jesse Smith\nLicense: GPL-2.0+\n\nFiles: debian/*\nCopyright: 1996-2004 Miquel van Smoorenburg <miquels at cistron.nl>\n 2005-2010, 2014 Petter Reinholdtsen <pere at debian.org>\n 2006 Henrique de Moraes Holschuh <hmh at debian.org>\n 2006 Thomas Hood <jdthood at yahoo.co.uk>\n 2006-2007 Steinar H. Gunderson <sesse at debian.org>\n 2009 Software in the Public Interest\n 2009 Hideki Yamane <henrich at debian.or.jp>\n 2009 Free Software Foundation, Inc.\n 2009 Clytie Siddall <clytie at riverland.net.au>\n 2009-2020 Adriano Rafael Gomes <adrianorg at debian.org>\n 2010-2012 Christian Perrier <bubulle at debian.org>\n 2010-2019 Joe Hansen <joedalton2 at yahoo.dk>\n 2011, 2016 Ben Hutchings <ben at decadent.org.uk>\n 2011-2013 Roger Leigh <rleigh at debian.org>\n 2012 Martin Bagge <brother at bsnet.se>\n 2012 Debian French l10n Team\n 2012-2013 Steve Langasek <vorlon at debian.org>\n 2014 Robert Millan <rmh at debian.org>\n 2014 Thomas Goirand <zigo at debian.org>\n 2014-2018 Michael Biebl <biebl at debian.org>\n 2015 Adam Conrad <adconrad at debian.org>\n 2015-2016 Andreas Henriksson <andreas at fatal.se>\n 2015-2016 Martin Pitt <mpitt at debian.org>\n 2017 Ian Jackson <ijackson at chiark.greenend.org.uk>\n 2018 Dmitry Bogatov <KAction at gnu.org>\n 2018 Vincenzo (KatolaZ) Nicosia <katolaz at freaknet.org>\n 2021 Mark Hindley <leepen at debian.org>\nLicense: GPL-2.0+\n\nFiles: contrib/sysd2v.sh\nCopyright: 2019 Trek http://www.trek.eu.org/devel/sysd2v\nLicense: GPL-3.0\n\nFiles: doc/Install\n man/fstab-decode.8\n man/initctl.5\n src/fstab-decode.c\n src/runlevellog.h\n src/runlevellog.c\nCopyright: 2006 Red Hat, Inc.\n 2018 Jesse Smith\nLicense: GPL-2.0\n\nLicense: GPL-2.0+\n This program 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 of the License, or (at your option) any later version.\n .\n This program 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.\n .\n You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems you can find a local copy of the GNU General Public License\n in /usr/share/common-licenses/GPL-2.\n\nLicense: GPL-3.0\n This program 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, version 3.\n .\n This program 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.\n .\n You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems you can find a local copy of the GNU General Public License\n in /usr/share/common-licenses/GPL-3.\n\nLicense: GPL-2.0\n This program 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; version 2.\n .\n This program 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.\n .\n You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems you can find a local copy of the GNU General Public License\n in /usr/share/common-licenses/GPL-2.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/sysvinit-utils at 3.06-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2338,6 +6625,28 @@
"content": "24fb92e98c2969171f81a8b589263d705f6b1670f95d121cd74c810d4605acc3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/tar at 1.34+dfsg-1.2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2354,6 +6663,13 @@
"content": "618679dfc90630dd0605f0079ddebd9a06a090913566f1063326e3ad21c7c55d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/tasksel at 3.73?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2370,6 +6686,13 @@
"content": "0016fb47a32ff54f9ade80d07e76e2524888f6df17916aad4318087cb3321521"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/tasksel-data at 3.73?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2386,6 +6709,13 @@
"content": "0ca0baec1fca55df56039047a631fc1541c5a44c1c4879d553aaa3a70844eb12"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/tzdata at 2024a-0+deb12u1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2402,6 +6732,38 @@
"content": "65e8708dc4d310afb1392266db33eff990eb5cc6cd590aaf0cf759b77d903758"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/udev at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2418,6 +6780,13 @@
"content": "908b80730d99afe6f59ed7f449827b7047ceeeaa7637c368c03e4912e0a6de99"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/usr-is-merged at 37~deb12u1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2434,6 +6803,71 @@
"content": "cc96c6e07db33c0422ff8945e13c004489c979f5e070daa67b9c6c219b22d980"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/util-linux at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2450,6 +6884,71 @@
"content": "45b08b5e928ceb229721ba13b4d8e7559957222d8c35b43b6413b81d9c2d06f8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/util-linux-extra at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2466,6 +6965,141 @@
"content": "82f4d33e2f0ded27ad1145a726cbc44ed0e2413becda3632a932e902b3df976b"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Vim"
+ }
+ },
+ {
+ "license": {
+ "name": "OPL-1+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache OR MIT",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Vim-Regexp",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "UC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "name": "Compaq",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR Vim",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "XPM",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "EDL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Apache",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/vim-common at 2:9.0.1378-2?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2482,6 +7116,141 @@
"content": "3fe784f4d5ec8a4b4b7101dea351778b7393a6a7cebf4a19e5349c6706c7e69b"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Vim"
+ }
+ },
+ {
+ "license": {
+ "name": "OPL-1+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache OR MIT",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Vim-Regexp",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "UC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "name": "Compaq",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR Vim",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "XPM",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "EDL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Apache",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/vim-tiny at 2:9.0.1378-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2498,6 +7267,18 @@
"content": "61f7b57a599d1655d4866f5119c5274505cdd619c71b1c1c2b79b603b32f55ca"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/whiptail at 0.52.23-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2514,6 +7295,13 @@
"content": "d7dd1d1411fedf27f5e27650a6eff20ef294077b568f4c8c5e51466dc7c08ce4"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/zlib1g at 1:1.2.13.dfsg-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
}
],
@@ -2534,6 +7322,13 @@
"content": "c24fe4eb8e60d8632d72ed104cce7c92cff200847c897dc8ba764b6c47b519e0"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/adduser at 3.134?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2550,6 +7345,28 @@
"content": "6ea03cbbc7a7bfcee601c9fb08d4e026fd522ede5350561f06867ad9c0a0fa6b"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/apt at 2.6.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2566,6 +7383,28 @@
"content": "b4fc5ac8cc5e4f17305ca31c259272132bde19b9e86d81003549c35e82bb6e8e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/apt-utils at 2.6.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2582,6 +7421,28 @@
"content": "6de342750e6a3940b321a5d056d0e17512d5ad3eb2fcf1fa6dbd783fcb4b7f0e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/base-files at 12.4+deb12u6?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2598,6 +7459,18 @@
"content": "908ca1b35125f49125ae56945a72bc11ce0fcec85a8d980d10d83bb3a610f518"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/base-passwd at 3.6.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2614,6 +7487,52 @@
"content": "d3c65202568384a588ea32017b243fe64ca054943a008cba4e5bd8f9e79975c4"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Contact: chet at po.cwru.edu\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU Bash,\n the Bourne Again SHell.\n .\n This package was put together by Matthias Klose <doko at debian.org>.\nSource:\n ftp.gnu.org:/pub/gnu/bash\nFiles-Excluded:\n doc/FAQ\n doc/aosa-bash*.pdf\n doc/article.*\n doc/rose94.*\n\nFiles: *\nCopyright: (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: examples/shellmath/*\nCopyright: (c) 2020 by Michael Wood. All rights reserved.\nLicense: GPL-3+\n\nFiles: support/bash.xbm\nCopyright: (C) 1992 Simon Marshall\nLicense: GPL-3+\n\nFiles: support/checkbashisms\nCopyright:\n Copyright (C) 1998 Richard Braakman\n Copyright (C) 2002 Josip Rodin\n Copyright (C) 2003 Julian Gilbey\nLicense: GPL-3+\n\nFiles:\n tests/ifs-posix.tests\n tests/posix2.tests\nCopyright: (C) 2005 Glen Fowler\n Copyright (c) 1995 Stephen Gildea\nLicense: GPL-3+\n\nLicense: GPL-3+\n Bash is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n Bash is distributed in the hope that it will be useful, but WITHOUT\n ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Bash. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: y.tab.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles:\n examples/functions/array-stuff\n examples/functions/fstty\n examples/functions/func\n examples/functions/inetaddr\n examples/functions/isnum2\n examples/functions/ksh*\n examples/functions/notify.bash\n examples/functions/seq*\n examples/functions/sort-pos-params\n examples/functions/substr*\n examples/functions/substr2\n examples/functions/w*\n tests/complete.tests\nCopyright: 1992-2020 Chester Ramey\nLicense: GPL-2+\n\nFiles:\n debian/clear_console.c\n examples/complete/bash_completion\nCopyright:\n Copyright (C) 2006-2019 Canonical Ltd.\n Copyright (C) Ian Macdonald <ian at caliban.org>\nLicense: GPL-2+\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n TThis program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation,\n Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles:\n doc/bashref.texi\n lib/readline/doc/history.texi\n lib/readline/doc/rl*man.texi\nCopyright: (c) 1988-2022 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n ``GNU Free Documentation License''.\nComment:\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n\nFiles:\n lib/readline/doc/rltech.texi\n lib/readline/doc/rluser.texi\n lib/readline/doc/hs*.texi\nCopyright: (C) 1988-2022 Free Software Foundation, Inc.\nLicense: Latex2e\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n pare preserved on all copies.\n .\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n\nFiles: lib/sh/inet_aton.c\nCopyright:\n * Copyright (c) 1983, 1990, 1993\n * The Regents of the University of California. All rights reserved.\n * Portions Copyright (c) 1993 by Digital Equipment Corporation.\nLicense: BSD-4-clause-UC and MIT-like\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. <removed>\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nLicense: MIT-like\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies, and that\n * the name of Digital Equipment Corporation not be used in advertising or\n * publicity pertaining to distribution of the document or software without\n * specific, written prior permission.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL\n * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT\n * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: support/man2html.c\nCopyright: Richard Verhoeven\nLicense: permissive\n * This program was written by Richard Verhoeven (NL:5482ZX35)\n * at the Eindhoven University of Technology. Email: rcb5 at win.tue.nl\n *\n * Permission is granted to distribute, modify and use this program as long\n * as this comment is not removed or changed.\n *\n * THIS IS A MODIFIED VERSION. IT WAS MODIFIED BY chet at po.cwru.edu FOR\n * USE BY BASH.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-4-clause-UC AND MIT-like",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Contact: chet at po.cwru.edu\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU Bash,\n the Bourne Again SHell.\n .\n This package was put together by Matthias Klose <doko at debian.org>.\nSource:\n ftp.gnu.org:/pub/gnu/bash\nFiles-Excluded:\n doc/FAQ\n doc/aosa-bash*.pdf\n doc/article.*\n doc/rose94.*\n\nFiles: *\nCopyright: (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: examples/shellmath/*\nCopyright: (c) 2020 by Michael Wood. All rights reserved.\nLicense: GPL-3+\n\nFiles: support/bash.xbm\nCopyright: (C) 1992 Simon Marshall\nLicense: GPL-3+\n\nFiles: support/checkbashisms\nCopyright:\n Copyright (C) 1998 Richard Braakman\n Copyright (C) 2002 Josip Rodin\n Copyright (C) 2003 Julian Gilbey\nLicense: GPL-3+\n\nFiles:\n tests/ifs-posix.tests\n tests/posix2.tests\nCopyright: (C) 2005 Glen Fowler\n Copyright (c) 1995 Stephen Gildea\nLicense: GPL-3+\n\nLicense: GPL-3+\n Bash is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n Bash is distributed in the hope that it will be useful, but WITHOUT\n ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Bash. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: y.tab.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles:\n examples/functions/array-stuff\n examples/functions/fstty\n examples/functions/func\n examples/functions/inetaddr\n examples/functions/isnum2\n examples/functions/ksh*\n examples/functions/notify.bash\n examples/functions/seq*\n examples/functions/sort-pos-params\n examples/functions/substr*\n examples/functions/substr2\n examples/functions/w*\n tests/complete.tests\nCopyright: 1992-2020 Chester Ramey\nLicense: GPL-2+\n\nFiles:\n debian/clear_console.c\n examples/complete/bash_completion\nCopyright:\n Copyright (C) 2006-2019 Canonical Ltd.\n Copyright (C) Ian Macdonald <ian at caliban.org>\nLicense: GPL-2+\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n TThis program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation,\n Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles:\n doc/bashref.texi\n lib/readline/doc/history.texi\n lib/readline/doc/rl*man.texi\nCopyright: (c) 1988-2022 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n ``GNU Free Documentation License''.\nComment:\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n\nFiles:\n lib/readline/doc/rltech.texi\n lib/readline/doc/rluser.texi\n lib/readline/doc/hs*.texi\nCopyright: (C) 1988-2022 Free Software Foundation, Inc.\nLicense: Latex2e\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n pare preserved on all copies.\n .\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n\nFiles: lib/sh/inet_aton.c\nCopyright:\n * Copyright (c) 1983, 1990, 1993\n * The Regents of the University of California. All rights reserved.\n * Portions Copyright (c) 1993 by Digital Equipment Corporation.\nLicense: BSD-4-clause-UC and MIT-like\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. <removed>\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nLicense: MIT-like\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies, and that\n * the name of Digital Equipment Corporation not be used in advertising or\n * publicity pertaining to distribution of the document or software without\n * specific, written prior permission.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL\n * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT\n * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: support/man2html.c\nCopyright: Richard Verhoeven\nLicense: permissive\n * This program was written by Richard Verhoeven (NL:5482ZX35)\n * at the Eindhoven University of Technology. Email: rcb5 at win.tue.nl\n *\n * Permission is granted to distribute, modify and use this program as long\n * as this comment is not removed or changed.\n *\n * THIS IS A MODIFIED VERSION. IT WAS MODIFIED BY chet at po.cwru.edu FOR\n * USE BY BASH.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Contact: chet at po.cwru.edu\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU Bash,\n the Bourne Again SHell.\n .\n This package was put together by Matthias Klose <doko at debian.org>.\nSource:\n ftp.gnu.org:/pub/gnu/bash\nFiles-Excluded:\n doc/FAQ\n doc/aosa-bash*.pdf\n doc/article.*\n doc/rose94.*\n\nFiles: *\nCopyright: (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: examples/shellmath/*\nCopyright: (c) 2020 by Michael Wood. All rights reserved.\nLicense: GPL-3+\n\nFiles: support/bash.xbm\nCopyright: (C) 1992 Simon Marshall\nLicense: GPL-3+\n\nFiles: support/checkbashisms\nCopyright:\n Copyright (C) 1998 Richard Braakman\n Copyright (C) 2002 Josip Rodin\n Copyright (C) 2003 Julian Gilbey\nLicense: GPL-3+\n\nFiles:\n tests/ifs-posix.tests\n tests/posix2.tests\nCopyright: (C) 2005 Glen Fowler\n Copyright (c) 1995 Stephen Gildea\nLicense: GPL-3+\n\nLicense: GPL-3+\n Bash is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n Bash is distributed in the hope that it will be useful, but WITHOUT\n ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Bash. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: y.tab.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles:\n examples/functions/array-stuff\n examples/functions/fstty\n examples/functions/func\n examples/functions/inetaddr\n examples/functions/isnum2\n examples/functions/ksh*\n examples/functions/notify.bash\n examples/functions/seq*\n examples/functions/sort-pos-params\n examples/functions/substr*\n examples/functions/substr2\n examples/functions/w*\n tests/complete.tests\nCopyright: 1992-2020 Chester Ramey\nLicense: GPL-2+\n\nFiles:\n debian/clear_console.c\n examples/complete/bash_completion\nCopyright:\n Copyright (C) 2006-2019 Canonical Ltd.\n Copyright (C) Ian Macdonald <ian at caliban.org>\nLicense: GPL-2+\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n TThis program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation,\n Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles:\n doc/bashref.texi\n lib/readline/doc/history.texi\n lib/readline/doc/rl*man.texi\nCopyright: (c) 1988-2022 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n ``GNU Free Documentation License''.\nComment:\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n\nFiles:\n lib/readline/doc/rltech.texi\n lib/readline/doc/rluser.texi\n lib/readline/doc/hs*.texi\nCopyright: (C) 1988-2022 Free Software Foundation, Inc.\nLicense: Latex2e\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n pare preserved on all copies.\n .\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n\nFiles: lib/sh/inet_aton.c\nCopyright:\n * Copyright (c) 1983, 1990, 1993\n * The Regents of the University of California. All rights reserved.\n * Portions Copyright (c) 1993 by Digital Equipment Corporation.\nLicense: BSD-4-clause-UC and MIT-like\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. <removed>\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nLicense: MIT-like\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies, and that\n * the name of Digital Equipment Corporation not be used in advertising or\n * publicity pertaining to distribution of the document or software without\n * specific, written prior permission.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL\n * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT\n * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: support/man2html.c\nCopyright: Richard Verhoeven\nLicense: permissive\n * This program was written by Richard Verhoeven (NL:5482ZX35)\n * at the Eindhoven University of Technology. Email: rcb5 at win.tue.nl\n *\n * Permission is granted to distribute, modify and use this program as long\n * as this comment is not removed or changed.\n *\n * THIS IS A MODIFIED VERSION. IT WAS MODIFIED BY chet at po.cwru.edu FOR\n * USE BY BASH.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/bash at 5.2.15-2+b7?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2630,6 +7549,71 @@
"content": "bd036aa19f93ad75c312d6130653eb559e5eb4376bd82fde8653ac33732dfa3a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/bsdutils at 1:2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2646,6 +7630,39 @@
"content": "61038f857e346e8500adf53a2a0a20859f4d3a3b51570cc876b153a2d51a3091"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later AND BSD-4-clause-UC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This is the Debian GNU/Linux packaged version of the GNU core\n utilities.\n This package is maintained by Michael Stone <mstone at debian.org>.\n See the file AUTHORS for a list of each program's main authors.\nSource: ftp://ftp.gnu.org/gnu/coreutils\n\nFiles: *\nCopyright: (C) 1984-2008 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: lib/fts.c\n lib/fts_.h\nCopyright: (C) 2004-2020, 2008 Free Software Foundation, Inc.\n (c) 1989, 1990, 1993, 1994 The Regents of the University of California. All rights reserved.\nLicense: GPL-3+ and BSD-4-clause-UC\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: lib/rand-isaac.[ch]\nCopyright: (C) 1999-2006 Free Software Foundation, Inc.\n (C) 1997, 1998, 1999 Colin Plumb.\nLicense: GPL-3+\n\nFiles: lib/inet_ntop.c\nCopyright: (C) 2005, 2006 Free Software Foundation, Inc.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n * Copyright (c) 1996-1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: m4/autobuild.m4\nCopyright: (C) 2004, 2006, 2007 Free Software Foundation, Inc.\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\nComment: From Simon Josefsson\n\nFiles: src/cut.c\nCopyright: (C) 1997-2007 Free Software Foundation, Inc.\n (C) 1984 David M. Ihnat\nLicense: GPL-3+\n\nFiles: src/dircolors.c\nCopyright: (C) 1996-2007 Free Software Foundation, Inc.\n (C) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin\nLicense: GPL-3+\n\nFiles: src/paste.c\nCopyright: (C) 1997-2005 Free Software Foundation, Inc.\n (C) 1984 David M. Ihnat\nLicense: GPL-3+\n\nFiles: src/shred.c\nCopyright: (C) 1999-2007 Free Software Foundation, Inc.\n (C) 1997, 1998, 1999 Colin Plumb.\nLicense: GPL-3+\n\nFiles: doc/coreutils.texi\nCopyright: 1994-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, with no Front-Cover Texts, and with no Back-Cover\n Texts. A copy of the license is included in the section entitled ``GNU\n Free Documentation License''.\n .\n On Debian systems, the complete text of the GNU Free Documentation License,\n Version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This is the Debian GNU/Linux packaged version of the GNU core\n utilities.\n This package is maintained by Michael Stone <mstone at debian.org>.\n See the file AUTHORS for a list of each program's main authors.\nSource: ftp://ftp.gnu.org/gnu/coreutils\n\nFiles: *\nCopyright: (C) 1984-2008 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: lib/fts.c\n lib/fts_.h\nCopyright: (C) 2004-2020, 2008 Free Software Foundation, Inc.\n (c) 1989, 1990, 1993, 1994 The Regents of the University of California. All rights reserved.\nLicense: GPL-3+ and BSD-4-clause-UC\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-4-clause-UC\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 4. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: lib/rand-isaac.[ch]\nCopyright: (C) 1999-2006 Free Software Foundation, Inc.\n (C) 1997, 1998, 1999 Colin Plumb.\nLicense: GPL-3+\n\nFiles: lib/inet_ntop.c\nCopyright: (C) 2005, 2006 Free Software Foundation, Inc.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n * Copyright (c) 1996-1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\nFiles: m4/autobuild.m4\nCopyright: (C) 2004, 2006, 2007 Free Software Foundation, Inc.\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\nComment: From Simon Josefsson\n\nFiles: src/cut.c\nCopyright: (C) 1997-2007 Free Software Foundation, Inc.\n (C) 1984 David M. Ihnat\nLicense: GPL-3+\n\nFiles: src/dircolors.c\nCopyright: (C) 1996-2007 Free Software Foundation, Inc.\n (C) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin\nLicense: GPL-3+\n\nFiles: src/paste.c\nCopyright: (C) 1997-2005 Free Software Foundation, Inc.\n (C) 1984 David M. Ihnat\nLicense: GPL-3+\n\nFiles: src/shred.c\nCopyright: (C) 1999-2007 Free Software Foundation, Inc.\n (C) 1997, 1998, 1999 Colin Plumb.\nLicense: GPL-3+\n\nFiles: doc/coreutils.texi\nCopyright: 1994-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, with no Front-Cover Texts, and with no Back-Cover\n Texts. A copy of the license is included in the section entitled ``GNU\n Free Documentation License''.\n .\n On Debian systems, the complete text of the GNU Free Documentation License,\n Version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/coreutils at 9.1-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2662,6 +7679,18 @@
"content": "73d4a22bdd7eb6be1e480d6884b103eb500cfd539cc20ae0f3e44dd8b0614798"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/cpio at 2.13+dfsg-7.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2678,6 +7707,34 @@
"content": "c1e12d9c993460e6396107668aa7ba79f8633decebb53aa6c38049584448be3f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Paul-Vixie's-license",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vixie-cron\nUpstream-Contact: Paul Vixie <paul at vix.com>\nSource:\n The original source for this package could be obtained from \n ftp://ftp.vix.com/pub/vixie/cron-3.0, although that link appears to have gone\n down.\n\nFiles: *\nCopyright: 1988, 1990, 1993, 1994, Paul Vixie <paul at vix.com>\n 1994, Ian Jackson <ian at davenant.greenend.org.uk>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2005-2014, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\n 2010-2016, Christian Kastner <ckk at debian.org>\n Numerous contributions via the Debian BTS copyright their respective authors\nLicense: Paul-Vixie's-license\n\nFiles: database.c\nCopyright: 1988, 1990, 1993, 1994 Paul Vixie <paul at vix.com>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2003, Clint Adams <schizo at debian.org>\n 2010-2011, Christian Kastner <ckk at debian.org>\n 2011, Red Hat, Inc.\nLicense: Paul-Vixie's-license and GPL-2+ and ISC\n\nFiles: debian/examples/cron-stats.pl\nCopyright: 2006, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/cron-tasks-review.sh\nCopyright: 2011, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/crontab2english.pl\nCopyright: 2001, Sean M. Burke\nLicense: Artistic\n\nLicense: Paul-Vixie's-license\n Distribute freely, except: don't remove my name from the source or\n documentation (don't take credit for my work), mark your changes (don't\n get me blamed for your possible bugs), don't alter or remove this\n notice. May be sold if buildable source is provided to buyer. No\n warranty of any kind, express or implied, is included with this\n software; use at your own risk, responsibility for damages (if any) to\n anyone resulting from the use of this software rests entirely with the\n user.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify it\n under the terms of the \"Artistic License\" which comes with Debian.\n .\n THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES\n OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n On Debian systems, the complete text of the Artistic License\n can be found in \"/usr/share/common-licenses/Artistic\".\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any \n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR \n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \n OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Paul-Vixie's-license AND GPL-2.0-or-later AND ISC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vixie-cron\nUpstream-Contact: Paul Vixie <paul at vix.com>\nSource:\n The original source for this package could be obtained from \n ftp://ftp.vix.com/pub/vixie/cron-3.0, although that link appears to have gone\n down.\n\nFiles: *\nCopyright: 1988, 1990, 1993, 1994, Paul Vixie <paul at vix.com>\n 1994, Ian Jackson <ian at davenant.greenend.org.uk>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2005-2014, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\n 2010-2016, Christian Kastner <ckk at debian.org>\n Numerous contributions via the Debian BTS copyright their respective authors\nLicense: Paul-Vixie's-license\n\nFiles: database.c\nCopyright: 1988, 1990, 1993, 1994 Paul Vixie <paul at vix.com>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2003, Clint Adams <schizo at debian.org>\n 2010-2011, Christian Kastner <ckk at debian.org>\n 2011, Red Hat, Inc.\nLicense: Paul-Vixie's-license and GPL-2+ and ISC\n\nFiles: debian/examples/cron-stats.pl\nCopyright: 2006, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/cron-tasks-review.sh\nCopyright: 2011, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/crontab2english.pl\nCopyright: 2001, Sean M. Burke\nLicense: Artistic\n\nLicense: Paul-Vixie's-license\n Distribute freely, except: don't remove my name from the source or\n documentation (don't take credit for my work), mark your changes (don't\n get me blamed for your possible bugs), don't alter or remove this\n notice. May be sold if buildable source is provided to buyer. No\n warranty of any kind, express or implied, is included with this\n software; use at your own risk, responsibility for damages (if any) to\n anyone resulting from the use of this software rests entirely with the\n user.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify it\n under the terms of the \"Artistic License\" which comes with Debian.\n .\n THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES\n OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n On Debian systems, the complete text of the Artistic License\n can be found in \"/usr/share/common-licenses/Artistic\".\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any \n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR \n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \n OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/cron at 3.0pl1-162?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2694,6 +7751,34 @@
"content": "0976761a354ce802a2cc6ac02d7585d93ad5fda231c27572d8529a6a62272c7f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Paul-Vixie's-license",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vixie-cron\nUpstream-Contact: Paul Vixie <paul at vix.com>\nSource:\n The original source for this package could be obtained from \n ftp://ftp.vix.com/pub/vixie/cron-3.0, although that link appears to have gone\n down.\n\nFiles: *\nCopyright: 1988, 1990, 1993, 1994, Paul Vixie <paul at vix.com>\n 1994, Ian Jackson <ian at davenant.greenend.org.uk>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2005-2014, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\n 2010-2016, Christian Kastner <ckk at debian.org>\n Numerous contributions via the Debian BTS copyright their respective authors\nLicense: Paul-Vixie's-license\n\nFiles: database.c\nCopyright: 1988, 1990, 1993, 1994 Paul Vixie <paul at vix.com>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2003, Clint Adams <schizo at debian.org>\n 2010-2011, Christian Kastner <ckk at debian.org>\n 2011, Red Hat, Inc.\nLicense: Paul-Vixie's-license and GPL-2+ and ISC\n\nFiles: debian/examples/cron-stats.pl\nCopyright: 2006, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/cron-tasks-review.sh\nCopyright: 2011, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/crontab2english.pl\nCopyright: 2001, Sean M. Burke\nLicense: Artistic\n\nLicense: Paul-Vixie's-license\n Distribute freely, except: don't remove my name from the source or\n documentation (don't take credit for my work), mark your changes (don't\n get me blamed for your possible bugs), don't alter or remove this\n notice. May be sold if buildable source is provided to buyer. No\n warranty of any kind, express or implied, is included with this\n software; use at your own risk, responsibility for damages (if any) to\n anyone resulting from the use of this software rests entirely with the\n user.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify it\n under the terms of the \"Artistic License\" which comes with Debian.\n .\n THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES\n OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n On Debian systems, the complete text of the Artistic License\n can be found in \"/usr/share/common-licenses/Artistic\".\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any \n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR \n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \n OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Paul-Vixie's-license AND GPL-2.0-or-later AND ISC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vixie-cron\nUpstream-Contact: Paul Vixie <paul at vix.com>\nSource:\n The original source for this package could be obtained from \n ftp://ftp.vix.com/pub/vixie/cron-3.0, although that link appears to have gone\n down.\n\nFiles: *\nCopyright: 1988, 1990, 1993, 1994, Paul Vixie <paul at vix.com>\n 1994, Ian Jackson <ian at davenant.greenend.org.uk>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2005-2014, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\n 2010-2016, Christian Kastner <ckk at debian.org>\n Numerous contributions via the Debian BTS copyright their respective authors\nLicense: Paul-Vixie's-license\n\nFiles: database.c\nCopyright: 1988, 1990, 1993, 1994 Paul Vixie <paul at vix.com>\n 1996-2005, Steve Greenland <stevegr at debian.org>\n 2003, Clint Adams <schizo at debian.org>\n 2010-2011, Christian Kastner <ckk at debian.org>\n 2011, Red Hat, Inc.\nLicense: Paul-Vixie's-license and GPL-2+ and ISC\n\nFiles: debian/examples/cron-stats.pl\nCopyright: 2006, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/cron-tasks-review.sh\nCopyright: 2011, Javier Fern\u00e1ndez-Sanguino Pe\u00f1a <jfs at debian.org>\nLicense: GPL-2+\n\nFiles: debian/examples/crontab2english.pl\nCopyright: 2001, Sean M. Burke\nLicense: Artistic\n\nLicense: Paul-Vixie's-license\n Distribute freely, except: don't remove my name from the source or\n documentation (don't take credit for my work), mark your changes (don't\n get me blamed for your possible bugs), don't alter or remove this\n notice. May be sold if buildable source is provided to buyer. No\n warranty of any kind, express or implied, is included with this\n software; use at your own risk, responsibility for damages (if any) to\n anyone resulting from the use of this software rests entirely with the\n user.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify it\n under the terms of the \"Artistic License\" which comes with Debian.\n .\n THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES\n OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n On Debian systems, the complete text of the Artistic License\n can be found in \"/usr/share/common-licenses/Artistic\".\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any \n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR \n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT \n OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/cron-daemon-common at 3.0pl1-162?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2710,6 +7795,28 @@
"content": "33ea40061da2f1a861ec46212b2b6a34f0776a049b1a3f0abce2fb8cb994258f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/dash at 0.5.12-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2726,6 +7833,13 @@
"content": "74ab14194a3762b2fc717917dcfda42929ab98e3c59295a063344dc551cd7cc8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/debconf at 1.5.82?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2742,6 +7856,13 @@
"content": "2f2c83f2d13ccc87d754526e40d156351f271e203fa54e1c822c60988b543dd0"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/debconf-i18n at 1.5.82?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2758,6 +7879,13 @@
"content": "c1bac61abefa0d957394d33c02b7bfb2a3ab3ce5e6d90617c4019ddea4bdbf63"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/debian-archive-keyring at 2023.3+deb12u1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2774,6 +7902,26 @@
"content": "55f951359670eb3236c9e2ccd5fac9ccb3db734f5a22aff21589e7a30aee48c9"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "SMAIL-GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This is the Debian GNU/Linux package debianutils.\n It is an original Debian package. Programs in it were maintained by\n Guy Maor <maor at debian.org>, and are now maintained by Clint Adams\n <schizo at debian.org>.\n\nFiles: *\nCopyright: (see individual files)\nLicense: GPL-2+\n\nFiles: installkernel\nCopyright:\n Copyright (C) 1995 - 1998, Ian A. Murdock <imurdock at debian.org>\n Copyright (C) 1998, 1999, Guy Maor\n Copyright (C) 2002, Matthew Wilcox\n Copyright (C) 2002, 2004, 2005, 2007, 2009 Clint Adams\n Copyright (C) 2009 Manoj Srivasta\nLicense: GPL-2+\n\nFiles: ischroot.c\nCopyright:\n Copyright (C) 2011 Aurelien Jarno <aurel32 at debian.org>\n Copyright (C) 2015 Andreas Henriksson <andreas at fatal.se>\nLicense: GPL-2+\n\nFiles: run-parts.*\nCopyright:\n Copyright (C) 1994 Ian Jackson.\n Copyright (C) 1996 Jeff Noxon <jeff at router.patch.net>\n Copyright (C) 1996-1999 Guy Maor <maor at debian.org>\n Copyright (C) 2002-2020 Clint Adams\nLicense: GPL-2+\n\nFiles: update-shells\nCopyright: 2021 Helmut Grohne <helmut at subdivi.de>\nLicense: GPL-2+\n\nLicense: GPL-2+\n All the package's programs except 'savelog', and 'which' may be\n redistributed under the terms of the GNU GPL, Version 2 or later,\n found on Debian systems in the file /usr/share/common-licenses/GPL-2.\n\nFiles: which\nCopyright: public-domain\nLicense: public-domain\n which is in the public domain.\n\nFiles: savelog\nCopyright:\n Copyright (C) 1988 Landon Curt Noll & Ronald S. Karr\n Copyright (C) 1992 Ronald S. Karr\n Copyleft (GNU) 1988 Landon Curt Noll & Ronald S. Karr\nLicense: SMAIL-GPL\n SMAIL GENERAL PUBLIC LICENSE\n (Clarified 11 Feb 1988)\n .\n Everyone is permitted to copy and distribute verbatim copies\n of this license, but changing it is not allowed. You can also\n use this wording to make the terms for other programs.\n .\n The license agreements of most software companies keep you at the\n mercy of those companies. By contrast, our general public license is\n intended to give everyone the right to share SMAIL. To make sure that\n you get the rights we want you to have, we need to make restrictions\n that forbid anyone to deny you these rights or to ask you to surrender\n the rights. Hence this license agreement.\n .\n Specifically, we want to make sure that you have the right to give\n away copies of SMAIL, that you receive source code or else can get it\n if you want it, that you can change SMAIL or use pieces of it in new\n free programs, and that you know you can do these things.\n .\n To make sure that everyone has such rights, we have to forbid you to\n deprive anyone else of these rights. For example, if you distribute\n copies of SMAIL, you must give the recipients all the rights that you\n have. You must make sure that they, too, receive or can get the\n source code. And you must tell them their rights.\n .\n Also, for our own protection, we must make certain that everyone\n finds out that there is no warranty for SMAIL. If SMAIL is modified by\n someone else and passed on, we want its recipients to know that what\n they have is not what we distributed, so that any problems introduced\n by others will not reflect on our reputation.\n .\n Therefore we (Landon Curt Noll and Ronald S. Karr) make the following\n terms which say what you must do to be allowed to distribute or change\n SMAIL.\n .\n .\n COPYING POLICIES\n .\n 1. You may copy and distribute verbatim copies of SMAIL source code\n as you receive it, in any medium, provided that you conspicuously and\n appropriately publish on each copy a valid copyright notice \"Copyright\n (C) 1988 Landon Curt Noll & Ronald S. Karr\" (or with whatever year is\n appropriate); keep intact the notices on all files that refer to this\n License Agreement and to the absence of any warranty; and give any\n other recipients of the SMAIL program a copy of this License\n Agreement along with the program. You may charge a distribution fee\n for the physical act of transferring a copy.\n .\n 2. You may modify your copy or copies of SMAIL or any portion of it,\n and copy and distribute such modifications under the terms of\n Paragraph 1 above, provided that you also do the following:\n .\n a) cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change; and\n .\n b) cause the whole of any work that you distribute or publish,\n that in whole or in part contains or is a derivative of SMAIL or\n any part thereof, to be licensed at no charge to all third\n parties on terms identical to those contained in this License\n Agreement (except that you may choose to grant more extensive\n warranty protection to some or all third parties, at your option).\n .\n c) You may charge a distribution fee for the physical act of\n transferring a copy, and you may at your option offer warranty\n protection in exchange for a fee.\n .\n Mere aggregation of another unrelated program with this program (or its\n derivative) on a volume of a storage or distribution medium does not bring\n the other program under the scope of these terms.\n .\n 3. You may copy and distribute SMAIL (or a portion or derivative of it,\n under Paragraph 2) in object code or executable form under the terms of\n Paragraphs 1 and 2 above provided that you also do one of the following:\n .\n a) accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n .\n b) accompany it with a written offer, valid for at least three\n years, to give any third party free (except for a nominal\n shipping charge) a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of\n Paragraphs 1 and 2 above; or,\n .\n c) accompany it with the information you received as to where the\n corresponding source code may be obtained. (This alternative is\n allowed only for non-commercial distribution and only if you\n received the program in object code or executable form alone.)\n .\n For an executable file, complete source code means all the source code for\n all modules it contains; but, as a special exception, it need not include\n source code for modules which are standard libraries that accompany the\n operating system on which the executable file runs.\n .\n 4. You may not copy, sublicense, distribute or transfer SMAIL\n except as expressly provided under this License Agreement. Any attempt\n otherwise to copy, sublicense, distribute or transfer SMAIL is void and\n your rights to use the program under this License agreement shall be\n automatically terminated. However, parties who have received computer\n software programs from you with this License Agreement will not have\n their licenses terminated so long as such parties remain in full compliance.\n .\n 5. If you wish to incorporate parts of SMAIL into other free\n programs whose distribution conditions are different, write to Landon\n Curt Noll & Ronald S. Karr via the Free Software Foundation at 51\n Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. We have not yet\n worked out a simple rule that can be stated here, but we will often\n permit this. We will be guided by the two goals of preserving the\n free status of all derivatives of our free software and of promoting\n the sharing and reuse of software.\n .\n Your comments and suggestions about our licensing policies and our\n software are welcome! This contract was based on the contract made by\n the Free Software Foundation. Please contact the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA, or call (617) 542-5942 for details on copylefted material in\n general.\n .\n NO WARRANTY\n .\n BECAUSE SMAIL IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO\n WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN\n OTHERWISE STATED IN WRITING, LANDON CURT NOLL & RONALD S. KARR AND/OR\n OTHER PARTIES PROVIDE SMAIL \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\n EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF SMAIL IS WITH\n YOU. SHOULD SMAIL PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL\n NECESSARY SERVICING, REPAIR OR CORRECTION.\n .\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL LANDON CURT NOLL &\n RONALD S. KARR AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE\n SMAIL AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\n LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR\n CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE\n (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED\n INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE\n PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE\n BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY\n ANY OTHER PARTY.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/debianutils at 5.7-0.5~deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2790,6 +7938,87 @@
"content": "8bdfedc14c1035e3750e9f055ac9c1ecd9b5d05d9e6dc6466c4e9237eef407dd"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH autoconf exception"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH texinfo exception"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: diffutils\nUpstream-Contact: bug-diffutils at gnu.org\nSource: https://ftp.gnu.org/gnu/diffutils/\nComment: This is the Debian prepackaged version of the GNU diffutils package.\n GNU `diff' was written by Mike Haertel, David Hayes, Richard Stallman,\n Len Tower, and Paul Eggert. Wayne Davison designed and implemented\n the unified output format. GNU `diff3' was written by Randy Smith.\n GNU `sdiff' was written by Thomas Lord. GNU `cmp' was written by\n Torbjorn Granlund and David MacKenzie.\n\nFiles: *\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: aclocal.m4\n build-aux/config.rpath\n m4/*\nCopyright: 1996-2021 Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: */Makefile.in\nCopyright: 1994-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ and FSFULLR\n\nFiles: lib/*\n gnulib-tests/accept.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getcwd-lgpl.c\n gnulib-tests/glthread/thread.c\n gnulib-tests/glthread/thread.h\n gnulib-tests/hash-pjw.c\n gnulib-tests/hash-pjw.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/perror.c\n gnulib-tests/pipe.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/same-inode.h\n gnulib-tests/sched.in.h\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/snprintf.c\n gnulib-tests/socket.c\n gnulib-tests/sockets.c\n gnulib-tests/sockets.h\n gnulib-tests/strerror_r.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/sys_socket.c\n gnulib-tests/sys_socket.in.h\n gnulib-tests/sys_uio.in.h\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/gnulib.mk\n lib/gnulib.mk\nCopyright: Copyright (C) 2002-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with autoconf exception\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this file. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License,\n this file may be distributed as part of a program that\n contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: build-aux/texinfo.tex\nCopyright: Copyright 1985, 1986, 1988, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with texinfo exception\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\n lib/_Noreturn.h\n lib/arg-nonnull.h\n lib/c++defs.h\n lib/warn-on-use.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.0+\n\nFiles: build-aux/ar-lib\n build-aux/compile\n build-aux/depcomp\n build-aux/gnupload\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n gnulib-tests/altstack-util.h\n gnulib-tests/mmap-anon-util.h\n gnulib-tests/test-dynarray.c\n gnulib-tests/test-sigsegv-catch-segv1.c\n gnulib-tests/test-sigsegv-catch-segv2.c\n gnulib-tests/test-sigsegv-catch-stackoverflow1.c\n gnulib-tests/test-sigsegv-catch-stackoverflow2.c\n lib/sigsegv.in.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: lib/sigsegv.c\nCopyright: 1993-2021 Free Software Foundation, Inc.\n 2018 Nylon Chen <nylon7 at andestech.com>\nLicense: GPL-2+\n\nFiles: lib/stackvma.c\n lib/stackvma.h\nCopyright: 2002-2021 Free Software Foundation, Inc.\n 2003-2006 Paolo Bonzini <bonzini at gnu.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free Software Foundation, Inc.\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README\n doc/*.texi\n doc/diffutils.info\nCopyright: 1992-1994, 1998, 2001-2002, 2004, 2006, 2007, 2008, 2009-2021\n Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n\nFiles: lib/Makefile.am\n lib/argmatch.c\n lib/argmatch.h\n lib/basename.c\n lib/c-stack.c\n lib/c-stack.h\n lib/cmpbuf.c\n lib/cmpbuf.h\n lib/diffseq.h\n lib/dirname.c\n lib/exclude.c\n lib/exclude.h\n lib/file-type.c\n lib/file-type.h\n lib/filenamecat.c\n lib/prepargs.c\n lib/progname.c\n lib/progname.h\n lib/propername.c\n lib/propername.h\n lib/quote.h\n lib/quotearg.c\n lib/quotearg.h\n lib/sh-quote.c\n lib/sh-quote.h\n lib/stat-macros.h\n lib/stdopen.c\n lib/stdopen.h\n lib/system-quote.c\n lib/system-quote.h\n lib/trim.c\n lib/trim.h\n lib/unlocked-io.h\n lib/xalloc-die.c\n lib/xalloc.h\n lib/xasprintf.c\n lib/xfreopen.c\n lib/xfreopen.h\n lib/xmalloc.c\n lib/xmalloca.c\n lib/xmalloca.h\n lib/xreadlink.c\n lib/xreadlink.h\n lib/xstdopen.c\n lib/xstdopen.h\n lib/xstriconv.c\n lib/xstriconv.h\n lib/xstrtoimax.c\n lib/xstrtol.c\n lib/xstrtol.h\n lib/xstrtoul.c\n lib/xvasprintf.c\n lib/xvasprintf.h\n m4/gnulib-comp.m4\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/putenv.c\n gnulib-tests/symlink.c\n gnulib-tests/wctob.c\n lib/freopen.c\n lib/gettime.c\n lib/ialloc.c\n lib/ialloc.h\n lib/mbscasecmp.c\n lib/mbslen.c\n lib/mbsstr.c\n lib/mbuiter.c\n lib/mbuiter.h\n lib/nstrftime.c\n lib/strftime.h\n lib/strtoimax.c\n lib/strtol.c\n lib/strtoll.c\n lib/time-internal.h\n lib/time_rz.c\n lib/timespec.c\n lib/timespec.h\n lib/tzset.c\n lib/version-etc-fsf.c\n lib/version-etc.c\n lib/version-etc.h\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+\n\nFiles: lib/str-kmp.h\nCopyright: 2005-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+ or GPL-2+\n This file is free software.\n It is dual-licensed under \"the GNU LGPLv3+ or the GNU GPLv2+\".\n You can redistribute it and/or modify it under either\n - the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3, or (at your\n option) any later version, or\n - the terms of the GNU General Public License as published by the\n Free Software Foundation; either version 2, or (at your option)\n any later version, or\n - the same dual license \"the GNU LGPLv3+ or the GNU GPLv2+\".\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License and the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License and of the GNU General Public License along with this\n program. If not, see <https://www.gnu.org/licenses/>. */\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nFiles: debian/*\nCopyright: 2022 Santiago Vila\nLicense: public-domain\n I believe that none of these files contain any creative\n expression eligible for copyright.\n\nLicense: LGPL-2.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2 may be found in `/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 may be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 2 may be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n GNU Free Documentation License.\n .\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 may be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFAP"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: diffutils\nUpstream-Contact: bug-diffutils at gnu.org\nSource: https://ftp.gnu.org/gnu/diffutils/\nComment: This is the Debian prepackaged version of the GNU diffutils package.\n GNU `diff' was written by Mike Haertel, David Hayes, Richard Stallman,\n Len Tower, and Paul Eggert. Wayne Davison designed and implemented\n the unified output format. GNU `diff3' was written by Randy Smith.\n GNU `sdiff' was written by Thomas Lord. GNU `cmp' was written by\n Torbjorn Granlund and David MacKenzie.\n\nFiles: *\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: aclocal.m4\n build-aux/config.rpath\n m4/*\nCopyright: 1996-2021 Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: */Makefile.in\nCopyright: 1994-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ and FSFULLR\n\nFiles: lib/*\n gnulib-tests/accept.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getcwd-lgpl.c\n gnulib-tests/glthread/thread.c\n gnulib-tests/glthread/thread.h\n gnulib-tests/hash-pjw.c\n gnulib-tests/hash-pjw.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/perror.c\n gnulib-tests/pipe.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/same-inode.h\n gnulib-tests/sched.in.h\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/snprintf.c\n gnulib-tests/socket.c\n gnulib-tests/sockets.c\n gnulib-tests/sockets.h\n gnulib-tests/strerror_r.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/sys_socket.c\n gnulib-tests/sys_socket.in.h\n gnulib-tests/sys_uio.in.h\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/gnulib.mk\n lib/gnulib.mk\nCopyright: Copyright (C) 2002-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with autoconf exception\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this file. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License,\n this file may be distributed as part of a program that\n contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: build-aux/texinfo.tex\nCopyright: Copyright 1985, 1986, 1988, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with texinfo exception\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\n lib/_Noreturn.h\n lib/arg-nonnull.h\n lib/c++defs.h\n lib/warn-on-use.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.0+\n\nFiles: build-aux/ar-lib\n build-aux/compile\n build-aux/depcomp\n build-aux/gnupload\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n gnulib-tests/altstack-util.h\n gnulib-tests/mmap-anon-util.h\n gnulib-tests/test-dynarray.c\n gnulib-tests/test-sigsegv-catch-segv1.c\n gnulib-tests/test-sigsegv-catch-segv2.c\n gnulib-tests/test-sigsegv-catch-stackoverflow1.c\n gnulib-tests/test-sigsegv-catch-stackoverflow2.c\n lib/sigsegv.in.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: lib/sigsegv.c\nCopyright: 1993-2021 Free Software Foundation, Inc.\n 2018 Nylon Chen <nylon7 at andestech.com>\nLicense: GPL-2+\n\nFiles: lib/stackvma.c\n lib/stackvma.h\nCopyright: 2002-2021 Free Software Foundation, Inc.\n 2003-2006 Paolo Bonzini <bonzini at gnu.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free Software Foundation, Inc.\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README\n doc/*.texi\n doc/diffutils.info\nCopyright: 1992-1994, 1998, 2001-2002, 2004, 2006, 2007, 2008, 2009-2021\n Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n\nFiles: lib/Makefile.am\n lib/argmatch.c\n lib/argmatch.h\n lib/basename.c\n lib/c-stack.c\n lib/c-stack.h\n lib/cmpbuf.c\n lib/cmpbuf.h\n lib/diffseq.h\n lib/dirname.c\n lib/exclude.c\n lib/exclude.h\n lib/file-type.c\n lib/file-type.h\n lib/filenamecat.c\n lib/prepargs.c\n lib/progname.c\n lib/progname.h\n lib/propername.c\n lib/propername.h\n lib/quote.h\n lib/quotearg.c\n lib/quotearg.h\n lib/sh-quote.c\n lib/sh-quote.h\n lib/stat-macros.h\n lib/stdopen.c\n lib/stdopen.h\n lib/system-quote.c\n lib/system-quote.h\n lib/trim.c\n lib/trim.h\n lib/unlocked-io.h\n lib/xalloc-die.c\n lib/xalloc.h\n lib/xasprintf.c\n lib/xfreopen.c\n lib/xfreopen.h\n lib/xmalloc.c\n lib/xmalloca.c\n lib/xmalloca.h\n lib/xreadlink.c\n lib/xreadlink.h\n lib/xstdopen.c\n lib/xstdopen.h\n lib/xstriconv.c\n lib/xstriconv.h\n lib/xstrtoimax.c\n lib/xstrtol.c\n lib/xstrtol.h\n lib/xstrtoul.c\n lib/xvasprintf.c\n lib/xvasprintf.h\n m4/gnulib-comp.m4\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/putenv.c\n gnulib-tests/symlink.c\n gnulib-tests/wctob.c\n lib/freopen.c\n lib/gettime.c\n lib/ialloc.c\n lib/ialloc.h\n lib/mbscasecmp.c\n lib/mbslen.c\n lib/mbsstr.c\n lib/mbuiter.c\n lib/mbuiter.h\n lib/nstrftime.c\n lib/strftime.h\n lib/strtoimax.c\n lib/strtol.c\n lib/strtoll.c\n lib/time-internal.h\n lib/time_rz.c\n lib/timespec.c\n lib/timespec.h\n lib/tzset.c\n lib/version-etc-fsf.c\n lib/version-etc.c\n lib/version-etc.h\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+\n\nFiles: lib/str-kmp.h\nCopyright: 2005-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+ or GPL-2+\n This file is free software.\n It is dual-licensed under \"the GNU LGPLv3+ or the GNU GPLv2+\".\n You can redistribute it and/or modify it under either\n - the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3, or (at your\n option) any later version, or\n - the terms of the GNU General Public License as published by the\n Free Software Foundation; either version 2, or (at your option)\n any later version, or\n - the same dual license \"the GNU LGPLv3+ or the GNU GPLv2+\".\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License and the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License and of the GNU General Public License along with this\n program. If not, see <https://www.gnu.org/licenses/>. */\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nFiles: debian/*\nCopyright: 2022 Santiago Vila\nLicense: public-domain\n I believe that none of these files contain any creative\n expression eligible for copyright.\n\nLicense: LGPL-2.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2 may be found in `/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 may be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 2 may be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n GNU Free Documentation License.\n .\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 may be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: diffutils\nUpstream-Contact: bug-diffutils at gnu.org\nSource: https://ftp.gnu.org/gnu/diffutils/\nComment: This is the Debian prepackaged version of the GNU diffutils package.\n GNU `diff' was written by Mike Haertel, David Hayes, Richard Stallman,\n Len Tower, and Paul Eggert. Wayne Davison designed and implemented\n the unified output format. GNU `diff3' was written by Randy Smith.\n GNU `sdiff' was written by Thomas Lord. GNU `cmp' was written by\n Torbjorn Granlund and David MacKenzie.\n\nFiles: *\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: aclocal.m4\n build-aux/config.rpath\n m4/*\nCopyright: 1996-2021 Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: */Makefile.in\nCopyright: 1994-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ and FSFULLR\n\nFiles: lib/*\n gnulib-tests/accept.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getcwd-lgpl.c\n gnulib-tests/glthread/thread.c\n gnulib-tests/glthread/thread.h\n gnulib-tests/hash-pjw.c\n gnulib-tests/hash-pjw.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/perror.c\n gnulib-tests/pipe.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/same-inode.h\n gnulib-tests/sched.in.h\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/snprintf.c\n gnulib-tests/socket.c\n gnulib-tests/sockets.c\n gnulib-tests/sockets.h\n gnulib-tests/strerror_r.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/sys_socket.c\n gnulib-tests/sys_socket.in.h\n gnulib-tests/sys_uio.in.h\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/gnulib.mk\n lib/gnulib.mk\nCopyright: Copyright (C) 2002-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with autoconf exception\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this file. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License,\n this file may be distributed as part of a program that\n contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: build-aux/texinfo.tex\nCopyright: Copyright 1985, 1986, 1988, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with texinfo exception\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\n lib/_Noreturn.h\n lib/arg-nonnull.h\n lib/c++defs.h\n lib/warn-on-use.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: LGPL-2.0+\n\nFiles: build-aux/ar-lib\n build-aux/compile\n build-aux/depcomp\n build-aux/gnupload\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n gnulib-tests/altstack-util.h\n gnulib-tests/mmap-anon-util.h\n gnulib-tests/test-dynarray.c\n gnulib-tests/test-sigsegv-catch-segv1.c\n gnulib-tests/test-sigsegv-catch-segv2.c\n gnulib-tests/test-sigsegv-catch-stackoverflow1.c\n gnulib-tests/test-sigsegv-catch-stackoverflow2.c\n lib/sigsegv.in.h\nCopyright: 1995-2021 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: lib/sigsegv.c\nCopyright: 1993-2021 Free Software Foundation, Inc.\n 2018 Nylon Chen <nylon7 at andestech.com>\nLicense: GPL-2+\n\nFiles: lib/stackvma.c\n lib/stackvma.h\nCopyright: 2002-2021 Free Software Foundation, Inc.\n 2003-2006 Paolo Bonzini <bonzini at gnu.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free Software Foundation, Inc.\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README\n doc/*.texi\n doc/diffutils.info\nCopyright: 1992-1994, 1998, 2001-2002, 2004, 2006, 2007, 2008, 2009-2021\n Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3\n\nFiles: lib/Makefile.am\n lib/argmatch.c\n lib/argmatch.h\n lib/basename.c\n lib/c-stack.c\n lib/c-stack.h\n lib/cmpbuf.c\n lib/cmpbuf.h\n lib/diffseq.h\n lib/dirname.c\n lib/exclude.c\n lib/exclude.h\n lib/file-type.c\n lib/file-type.h\n lib/filenamecat.c\n lib/prepargs.c\n lib/progname.c\n lib/progname.h\n lib/propername.c\n lib/propername.h\n lib/quote.h\n lib/quotearg.c\n lib/quotearg.h\n lib/sh-quote.c\n lib/sh-quote.h\n lib/stat-macros.h\n lib/stdopen.c\n lib/stdopen.h\n lib/system-quote.c\n lib/system-quote.h\n lib/trim.c\n lib/trim.h\n lib/unlocked-io.h\n lib/xalloc-die.c\n lib/xalloc.h\n lib/xasprintf.c\n lib/xfreopen.c\n lib/xfreopen.h\n lib/xmalloc.c\n lib/xmalloca.c\n lib/xmalloca.h\n lib/xreadlink.c\n lib/xreadlink.h\n lib/xstdopen.c\n lib/xstdopen.h\n lib/xstriconv.c\n lib/xstriconv.h\n lib/xstrtoimax.c\n lib/xstrtol.c\n lib/xstrtol.h\n lib/xstrtoul.c\n lib/xvasprintf.c\n lib/xvasprintf.h\n m4/gnulib-comp.m4\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/putenv.c\n gnulib-tests/symlink.c\n gnulib-tests/wctob.c\n lib/freopen.c\n lib/gettime.c\n lib/ialloc.c\n lib/ialloc.h\n lib/mbscasecmp.c\n lib/mbslen.c\n lib/mbsstr.c\n lib/mbuiter.c\n lib/mbuiter.h\n lib/nstrftime.c\n lib/strftime.h\n lib/strtoimax.c\n lib/strtol.c\n lib/strtoll.c\n lib/time-internal.h\n lib/time_rz.c\n lib/timespec.c\n lib/timespec.h\n lib/tzset.c\n lib/version-etc-fsf.c\n lib/version-etc.c\n lib/version-etc.h\nCopyright: 1985-1986, 1988-1989, 1990-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+\n\nFiles: lib/str-kmp.h\nCopyright: 2005-2021 Free Software Foundation, Inc.\nLicense: LGPL-3.0+ or GPL-2+\n This file is free software.\n It is dual-licensed under \"the GNU LGPLv3+ or the GNU GPLv2+\".\n You can redistribute it and/or modify it under either\n - the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3, or (at your\n option) any later version, or\n - the terms of the GNU General Public License as published by the\n Free Software Foundation; either version 2, or (at your option)\n any later version, or\n - the same dual license \"the GNU LGPLv3+ or the GNU GPLv2+\".\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License and the GNU General Public License\n for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License and of the GNU General Public License along with this\n program. If not, see <https://www.gnu.org/licenses/>. */\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nFiles: debian/*\nCopyright: 2022 Santiago Vila\nLicense: public-domain\n I believe that none of these files contain any creative\n expression eligible for copyright.\n\nLicense: LGPL-2.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2 may be found in `/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 may be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3.0+\n This file is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of the\n License, or (at your option) any later version.\n .\n This file is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 3 may be found in `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 3 may be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License version\n 2 may be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled\n GNU Free Documentation License.\n .\n On Debian systems, the complete text of the GNU Free Documentation License\n version 1.3 may be found in `/usr/share/common-licenses/GFDL-1.3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/diffutils at 1:3.8-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2806,6 +8035,13 @@
"content": "d993666c87dd290d6df2a69bf0beba608c38b1157a5c97795d2011e51b0db96e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/dmidecode at 3.4-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2822,6 +8058,28 @@
"content": "c73fc490b93c83550ed272de69ec96c5da30d4456b889f9e93c7fd8e53860b85"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/dmsetup at 2:1.02.185-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2838,6 +8096,31 @@
"content": "9d97f27d8a8a06dd4800e8e0291337ca02e11cdfd7df09a4566a982a6d9fe4c4"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "public-domain-s-s-d",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: dpkg\n\nFiles: *\nCopyright:\n Copyright \u00a9 1994 Ian Murdock <imurdock at debian.org>\n Copyright \u00a9 1994 Matt Welsh <mdw at sunsite.unc.edu>\n Copyright \u00a9 1994 Carl Streeter <streeter at cae.wisc.edu>\n Copyright \u00a9 1994-1999, 2007-2008 Ian Jackson <ijackson at chiark.greenend.org.uk>\n Copyright \u00a9 1995 Bruce Perens <bruce at pixar.com>\n Copyright \u00a9 1995-1996 Erick Branderhorst <branderhorst at heel.fgg.eur.nl>\n Copyright \u00a9 1996 Michael Shields <shields at crosslink.net>\n Copyright \u00a9 1996 Klee Dienes <klee at debian.org>\n Copyright \u00a9 1996 Kim-Minh Kaplan <kkaplan at cdfhp3.in2p3.fr>\n Copyright \u00a9 1996-1998 Miquel van Smoorenburg <miquels at cistron.nl>\n Copyright \u00a9 1997-1998 Charles Briscoe-Smith <cpbs at debian.org>\n Copyright \u00a9 1997-1998 Juho Vuori <javuori at cc.helsinki.fi>\n Copyright \u00a9 1998 Koichi Sekido <sekido at mbox.kyoto-inet.or.jp>\n Copyright \u00a9 1998 Jim Van Zandt <jrv at vanzandt.mv.com>\n Copyright \u00a9 1998 Juan Cespedes <cespedes at debian.org>\n Copyright \u00a9 1998 Nils Rennebarth <nils at debian.org>\n Copyright \u00a9 1998 Heiko Schlittermann <hs at schlittermann.de>\n Copyright \u00a9 1998-1999, 2001, 2003, 2006 Martin Schulze <joey at infodrom.org>\n Copyright \u00a9 1999 Roderick Shertler <roderick at argon.org>\n Copyright \u00a9 1999 Ben Collins <bcollins at debian.org>\n Copyright \u00a9 1999 Richard Kettlewell <rjk at sfere.greenend.org.uk>\n Copyright \u00a9 1999-2001 Marcus Brinkmann <brinkmd at debian.org>\n Copyright \u00a9 1999-2002 Wichert Akkerman <wakkerma at debian.org>\n Copyright \u00a9 2001, 2007, 2010 Joey Hess <joeyh at debian.org>\n Copyright \u00a9 2004-2005, 2007-2008, 2010 Canonical Ltd.\n Copyright \u00a9 2004-2005 Scott James Remnant <scott at netsplit.com>\n Copyright \u00a9 2006-2008 Frank Lichtenheld <djpig at debian.org>\n Copyright \u00a9 2006-2023 Guillem Jover <guillem at debian.org>\n Copyright \u00a9 2007-2012, 2014, 2016 Rapha\u00ebl Hertzog <hertzog at debian.org>\n Copyright \u00a9 2007 Nicolas Fran\u00e7ois <nicolas.francois at centraliens.net>\n Copyright \u00a9 2007 Don Armstrong <don at donarmstrong.com>\n Copyright \u00a9 2007 Colin Watson <cjwatson at debian.org>\n Copyright \u00a9 2007, 2008 Tollef Fog Heen <tfheen at err.no>\n Copyright \u00a9 2007-2010 Canonical Ltd.\n Copyright \u00a9 2008 James Westby <jw+debian at jameswestby.net>\n Copyright \u00a9 2008 Zack Weinberg <zackw at panix.com>\n Copyright \u00a9 2008 Pierre Habouzit <madcoder at debian.org>\n Copyright \u00a9 2009 Romain Francoise <rfrancoise at debian.org>\n Copyright \u00a9 2009-2010 Modestas Vainius <modax at debian.org>\n Copyright \u00a9 2009-2011 Kees Cook <kees at debian.org>\n Copyright \u00a9 2010 Charles Plessy <plessy at debian.org>\n Copyright \u00a9 2010 Oxan van Leeuwen <oxan at oxanvanleeuwen.nl>\n Copyright \u00a9 2010 Russ Allbery <rra at debian.org>\n Copyright \u00a9 2011 Linaro Limited\n Copyright \u00a9 2011 Matt Kraai <kraai at ftbfs.org>\n Copyright \u00a9 2014 Bill Allombert <ballombe at debian.org>\n Copyright \u00a9 2014-2015 J\u00e9r\u00e9my Bobbio <lunar at debian.org>\n Copyright \u00a9 2020 Helmut Grohne <helmut at subdivi.de>\n Copyright \u00a9 2021 Sebastian Andrzej Siewior <sebastian at breakpoint.cc>\nLicense: GPL-2+\n\nFiles:\n lib/compat/getopt*\n lib/compat/gettext.h\n lib/compat/obstack.*\n lib/compat/strnlen.c\nCopyright:\n Copyright \u00a9 1987-2006 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles:\n dselect/methods/Dselect/Ftp.pm\n dselect/methods/ftp/*\nCopyright:\n Copyright \u00a9 1996 Andy Guy <awpguy at acs.ucalgary.ca>\n Copyright \u00a9 1998 Martin Schulze <joey at infodrom.org>\n Copyright \u00a9 1999-2001, 2005-2006, 2009 Rapha\u00ebl Hertzog <hertzog at debian.org>\nLicense: GPL-2\n\nFiles:\n scripts/Dpkg/Gettext.pm\nCopyright:\n Copyright \u00a9 2000 Joey Hess <joeyh at debian.org>\n Copyright \u00a9 2007-2022 Guillem Jover <guillem at debian.org>\nLicense: BSD-2-clause\n\nFiles:\n utils/start-stop-daemon.c\nCopyright:\n Copyright \u00a9 1999 Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\n Copyright \u00a9 1999 Christian Schwarz <schwarz at monet.m.isar.de>\n Copyright \u00a9 1999 Klee Dienes <klee at debian.org>\n Copyright \u00a9 1999 Ben Collins <bcollins at debian.org>\n Copyright \u00a9 1999-2002 Wichert Akkerman <wakkerma at debian.org>\n Copyright \u00a9 2000-2003 Adam Heath <doogie at debian.org>\n Copyright \u00a9 2001 Sontri Tomo Huynh <huynh.29 at osu.edu>\n Copyright \u00a9 2001 Andreas Schuldei <andreas at schuldei.org>\n Copyright \u00a9 2001 Ian Jackson <ijackson at chiark.greenend.org.uk>\n Copyright \u00a9 2004-2005 Scott James Remnant <keybuk at debian.org>\n Copyright \u00a9 2006-2021 Guillem Jover <guillem at debian.org>\n Copyright \u00a9 2008 Samuel Thibault <samuel.thibault at ens-lyon.org>\n Copyright \u00a9 2008 Andreas P\u00e5hlsson <andreas.pahlsson at xcerion.com>\n Copyright \u00a9 2009 Chris Coulson <chrisccoulson at googlemail.com>\n Copyright \u00a9 2012 Carsten Hey <carsten at debian.org>\n Copyright \u00a9 2014 Nir Soffer <nirs at hyperms.com>\nLicense: public-domain-s-s-d\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain. Based conceptually on start-stop-daemon.pl, by Ian\n Jackson <ijackson at gnu.ai.mit.edu>. May be used and distributed\n freely for any purpose. Changes by Christian Schwarz\n <schwarz at monet.m.isar.de>, to make output conform to the Debian\n Console Message Standard, also placed in public domain. Minor\n changes by Klee Dienes <klee at debian.org>, also placed in the Public\n Domain.\n .\n Changes by Ben Collins <bcollins at debian.org>, added --chuid, --background\n and --make-pidfile options, placed in public domain as well.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n can be found in \u2018/usr/share/common-licenses/GPL-2\u2019 or in the dpkg source\n as the file \u2018COPYING\u2019.\n\nLicense: GPL-2\n This is free software; you can redistribute it and/or modify\n it under the terms of version 2 of the GNU General Public\n License version 2 as published by the Free Software Foundation.\n .\n This is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY AUTHORS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/dpkg at 1.21.22?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2854,6 +8137,59 @@
"content": "4018d17d6a44ffeb19c002dc9f721bf474e6879ad814f1bfcdd6666803e30178"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/e2fsprogs at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2862,28 +8198,195 @@
"version": "2.38.1-5+deb12u1",
"hashes": [
{
- "alg": "MD5",
- "content": "0d8be8801599c7a706fe1586840f8164"
+ "alg": "MD5",
+ "content": "0d8be8801599c7a706fe1586840f8164"
+ },
+ {
+ "alg": "SHA-256",
+ "content": "ef49a1bfa24d22ac8b0f70f3ab2ddb7fa53cd5d1612fa1a01abc3be76717dfd2"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
+ "purl": "pkg:deb/debian/fdisk at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
+ },
+ {
+ "type": "application",
+ "name": "findutils",
+ "version": "4.9.0-4",
+ "hashes": [
+ {
+ "alg": "MD5",
+ "content": "2e00b139a6fae85aa2acb88f954cab39"
+ },
+ {
+ "alg": "SHA-256",
+ "content": "5dd86bd0af4aa73f067dfd6b8339dd868f2dd84056aa79db29d1206d4fbc5e04"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFAP"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Autoconf-data exception"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Autoconf-data exception"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL WITH automake exception",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
},
{
- "alg": "SHA-256",
- "content": "ef49a1bfa24d22ac8b0f70f3ab2ddb7fa53cd5d1612fa1a01abc3be76717dfd2"
- }
- ],
- "purl": "pkg:deb/debian/fdisk at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
- },
- {
- "type": "application",
- "name": "findutils",
- "version": "4.9.0-4",
- "hashes": [
+ "license": {
+ "name": "BSD-3-clause and/or GPL-3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
{
- "alg": "MD5",
- "content": "2e00b139a6fae85aa2acb88f954cab39"
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-2.2 exception"
+ }
},
{
- "alg": "SHA-256",
- "content": "5dd86bd0af4aa73f067dfd6b8339dd868f2dd84056aa79db29d1206d4fbc5e04"
+ "license": {
+ "name": "LGPL-3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "ISC and/or LGPL-2.1+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
}
],
"purl": "pkg:deb/debian/findutils at 4.9.0-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
@@ -2902,6 +8405,108 @@
"content": "1a03df5a57833d65b5bb08cfa19d50e76f29088dc9e64fb934af42d9023a0807"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFAP"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Autoconf-data exception"
+ }
+ },
+ {
+ "license": {
+ "id": "FSFULLR"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Autoconf-data exception"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL WITH automake exception",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause and/or GPL-3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-2.2 exception"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "ISC and/or LGPL-2.1+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: findutils\nSource: https://ftp.gnu.org/gnu/findutils/\n\nFiles: *\nCopyright: 1996-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: GNUmakefile\n Makefile.am\n TODO\n configure.ac\n init.cfg\n maint.mk\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: INSTALL\nCopyright: 1994-1996, 1999-2002, 2004-2017, 2020, 2021, Free\nLicense: FSFAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n\nFiles: README-hacking\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: build-aux/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/config.guess\n build-aux/config.sub\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf-data exception\n under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that\n program. This Exception is an additional permission under section 7\n of the GNU General Public License, version 3 (\"GPLv3\").\n\nFiles: build-aux/config.rpath\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: build-aux/depcomp\n build-aux/mdate-sh\n build-aux/missing\n build-aux/test-driver\n build-aux/ylwrap\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: GPL-2+ with Autoconf-data exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program. \n\nFiles: build-aux/gnupload\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n .\n FSF changes to this file are in the public domain.\n\nFiles: build-aux/mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n blah\n\nFiles: debian/*\nCopyright: Ian Murdock (before 1996) 1996-2001 Kevin Dalley 2002 Thomas Schoepf 2003-2023 Andreas Metzler\nLicense: GPL-2+\n\nFiles: doc/*\nCopyright: 1994-2022, Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n\nFiles: doc/Makefile.am\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: find/find.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/*\nCopyright: 2004, 2009, Free Software Foundation, Inc.\nLicense: GPL with automake exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Automake, under\n the same distribution terms as the rest of that program.\n\nFiles: gl/lib/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/Makefile.am\n gl/lib/areadlinkat.c\n gl/lib/argv-iter.c\n gl/lib/argv-iter.h\n gl/lib/at-func.c\n gl/lib/canonicalize.c\n gl/lib/canonicalize.h\n gl/lib/chdir-long.c\n gl/lib/chdir-long.h\n gl/lib/close-stream.c\n gl/lib/close-stream.h\n gl/lib/closein.c\n gl/lib/closein.h\n gl/lib/creat-safer.c\n gl/lib/cycle-check.c\n gl/lib/cycle-check.h\n gl/lib/dev-ino.h\n gl/lib/dirent--.h\n gl/lib/dirent-safer.h\n gl/lib/dup-safer-flag.c\n gl/lib/dup-safer.c\n gl/lib/faccessat.c\n gl/lib/fcntl--.h\n gl/lib/fcntl-safer.h\n gl/lib/fd-safer-flag.c\n gl/lib/fd-safer.c\n gl/lib/fdopendir.c\n gl/lib/file-set.c\n gl/lib/file-set.h\n gl/lib/fopen-safer.c\n gl/lib/fstatat.c\n gl/lib/fts-cycle.c\n gl/lib/gcc-function-attributes.h\n gl/lib/getcwd.c\n gl/lib/hash-triple-simple.c\n gl/lib/hash-triple.h\n gl/lib/human.c\n gl/lib/human.h\n gl/lib/idcache.h\n gl/lib/mbswidth.c\n gl/lib/mbswidth.h\n gl/lib/mountlist.c\n gl/lib/open-safer.c\n gl/lib/openat-die.c\n gl/lib/openat-priv.h\n gl/lib/openat-proc.c\n gl/lib/openat-safer.c\n gl/lib/openat.c\n gl/lib/openat.h\n gl/lib/opendir-safer.c\n gl/lib/opendirat.c\n gl/lib/opendirat.h\n gl/lib/parse-datetime.y\n gl/lib/pipe-safer.c\n gl/lib/progname.c\n gl/lib/progname.h\n gl/lib/quote.h\n gl/lib/quotearg.c\n gl/lib/readlinkat.c\n gl/lib/selinux-at.c\n gl/lib/selinux-at.h\n gl/lib/stat-macros.h\n gl/lib/stat-size.h\n gl/lib/statat.c\n gl/lib/stdio--.h\n gl/lib/stdio-safer.h\n gl/lib/unistd--.h\n gl/lib/unistd-safer.h\n gl/lib/unlinkat.c\n gl/lib/unlocked-io.h\n gl/lib/xalloc.h\n gl/lib/xgetcwd.h\n gl/lib/xmalloc.c\n gl/lib/xstrtoul.c\n gl/lib/xstrtoumax.c\n gl/lib/yesno.c\n gl/lib/yesno.h\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/lib/_Noreturn.h\n gl/lib/arg-nonnull.h\n gl/lib/c++defs.h\n gl/lib/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gl/lib/alloca.c\nCopyright: D A Gwyn\nLicense: public-domain\n This file is in the public domain.\n\nFiles: gl/lib/alloca.in.h\n gl/lib/areadlink.h\n gl/lib/basename-lgpl.h\n gl/lib/careadlinkat.c\n gl/lib/dirname.h\n gl/lib/error.h\n gl/lib/hash.h\n gl/lib/stripslash.c\n gl/lib/uniwidth.in.h\nCopyright: 1990, 1995-1999, 2001-2022, Free Software Foundation\nLicense: LGPL-2.1+\n\nFiles: gl/lib/argmatch.c\n gl/lib/argmatch.h\n gl/lib/basename.c\n gl/lib/closeout.h\n gl/lib/dirname.c\n gl/lib/fileblocks.c\n gl/lib/modechange.c\n gl/lib/modechange.h\n gl/lib/mountlist.h\n gl/lib/parse-datetime.h\n gl/lib/rpmatch.c\n gl/lib/save-cwd.c\n gl/lib/savedir.c\n gl/lib/savedir.h\n gl/lib/xalloc-die.c\n gl/lib/xgetcwd.c\n gl/lib/xstrtod.c\n gl/lib/xstrtod.h\n gl/lib/xstrtol-error.c\n gl/lib/xstrtol-error.h\n gl/lib/xstrtol.c\n gl/lib/xstrtol.h\nCopyright: 1989-1992, 1995-2022, Free Software\nLicense: GPL-3+\n\nFiles: gl/lib/basename-lgpl.c\n gl/lib/c-strcase.h\n gl/lib/dirname-lgpl.c\n gl/lib/filenamecat.h\n gl/lib/getdelim.c\n gl/lib/gettext.h\n gl/lib/group-member.c\n gl/lib/hard-locale.c\n gl/lib/minmax.h\n gl/lib/pathmax.h\n gl/lib/printf-args.c\n gl/lib/printf-args.h\n gl/lib/printf-parse.h\n gl/lib/realloc.c\n gl/lib/rmdir.c\n gl/lib/safe-read.c\n gl/lib/stpcpy.c\n gl/lib/strdup.c\n gl/lib/strndup.c\n gl/lib/strstr.c\nCopyright: 1988, 1990-2022, Free Software\nLicense: LGPL-2.1+\n\nFiles: gl/lib/c-strstr.c\n gl/lib/c-strstr.h\n gl/lib/fchdir.c\n gl/lib/gettime.c\n gl/lib/i-ring.c\n gl/lib/i-ring.h\n gl/lib/isfinite.c\n gl/lib/isinf.c\n gl/lib/mbscasestr.c\n gl/lib/mbslen.c\n gl/lib/mbsstr.c\n gl/lib/mbuiter.c\n gl/lib/mbuiter.h\n gl/lib/modf.c\n gl/lib/nstrftime.c\n gl/lib/rewinddir.c\n gl/lib/strftime.h\n gl/lib/strtoul.c\n gl/lib/strtoull.c\n gl/lib/strtoumax.c\n gl/lib/time-internal.h\n gl/lib/time_rz.c\n gl/lib/timespec.c\n gl/lib/trunc.c\n gl/lib/tzset.c\n gl/lib/version-etc-fsf.c\n gl/lib/version-etc.c\n gl/lib/version-etc.h\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gl/lib/cdefs.h\nCopyright: The GNU Toolchain Authors.\n 1992-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gl/lib/closeout.c\n gl/lib/filemode.h\n gl/lib/fpending.c\n gl/lib/fpending.h\n gl/lib/quotearg.h\n gl/lib/save-cwd.h\nCopyright: 1995, 1997-2022, Free Software Foundation\nLicense: GPL-3+\n\nFiles: gl/lib/euidaccess.c\n gl/lib/fnmatch.in.h\nCopyright: 1990-1993, 1995-2022, Free\nLicense: LGPL-2.1+\n\nFiles: gl/lib/filemode.c\n gl/lib/idcache.c\nCopyright: 1985, 1988-1990, 1993, 1997-2000, 2003-2007, 2009-2022, Free\nLicense: GPL-3+\n\nFiles: gl/lib/fts.c\n gl/lib/fts_.h\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: BSD-3-clause and/or GPL-3+\n\nFiles: gl/lib/memrchr.c\n gl/lib/strtol.c\n gl/lib/timespec.h\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gl/lib/parse-datetime-gen.h\n gl/lib/parse-datetime.c\nCopyright: 1984, 1989, 1990, 2000-2015, 2018-2021, Free Software Foundation\nLicense: GPL-3+ with Bison-2.2 exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: gl/lib/str-kmp.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/lib/strtoimax.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gl/lib/uniwidth/width0.h\n gl/lib/uniwidth/width2.h\nCopyright: 2000-2022, Free Software Foundation, Inc.\nLicense: LGPL-3\n\nFiles: gl/m4/*\nCopyright: 1992-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/alloca.m4\n gl/m4/getline.m4\n gl/m4/getpagesize.m4\n gl/m4/idcache.m4\n gl/m4/intmax_t.m4\n gl/m4/malloca.m4\n gl/m4/mbrtowc.m4\n gl/m4/mempcpy.m4\n gl/m4/memrchr.m4\n gl/m4/mktime.m4\n gl/m4/modechange.m4\n gl/m4/pathmax.m4\n gl/m4/quote.m4\n gl/m4/safe-read.m4\n gl/m4/savedir.m4\n gl/m4/strnlen.m4\n gl/m4/xstrtod.m4\n gl/m4/yesno.m4\nCopyright: 1997-2022, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gl/m4/codeset.m4\n gl/m4/d-ino.m4\n gl/m4/fstypename.m4\n gl/m4/stat-time.m4\nCopyright: 1997-2022, Free Software\nLicense: FSFULLR\n\nFiles: gl/m4/gettext.m4\n gl/m4/intl-thread-locale.m4\n gl/m4/intlmacosx.m4\n gl/m4/po.m4\n gl/m4/progtest.m4\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: gl/m4/gnulib-cache.m4\n gl/m4/gnulib-comp.m4\n gl/m4/std-gnu11.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gl/m4/lcmessage.m4\nCopyright: 1995-2002, 2004, 2005, 2008-2014, 2016, 2019-2022, Free\nLicense: FSFULLR\n\nFiles: gl/m4/nls.m4\nCopyright: 1995-2003, 2005, 2006, 2008-2014, Free Software Foundation\nLicense: FSFULLR\n\nFiles: gnulib-tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: gnulib-tests/_Noreturn.h\n gnulib-tests/arg-nonnull.h\n gnulib-tests/c++defs.h\n gnulib-tests/warn-on-use.h\nCopyright: 2009-2022, Free Software Foundation, Inc.\nLicense: LGPL-2+\n\nFiles: gnulib-tests/accept.c\n gnulib-tests/anytostr.c\n gnulib-tests/arpa_inet.in.h\n gnulib-tests/binary-io.c\n gnulib-tests/binary-io.h\n gnulib-tests/bind.c\n gnulib-tests/connect.c\n gnulib-tests/fdopen.c\n gnulib-tests/fpucw.h\n gnulib-tests/getpagesize.c\n gnulib-tests/getrandom.c\n gnulib-tests/ignore-value.h\n gnulib-tests/imaxtostr.c\n gnulib-tests/inttostr.c\n gnulib-tests/inttostr.h\n gnulib-tests/ioctl.c\n gnulib-tests/listen.c\n gnulib-tests/localename-table.c\n gnulib-tests/localename-table.h\n gnulib-tests/localename.c\n gnulib-tests/localename.h\n gnulib-tests/mkdir.c\n gnulib-tests/nanosleep.c\n gnulib-tests/netinet_in.in.h\n gnulib-tests/offtostr.c\n gnulib-tests/pthread-thread.c\n gnulib-tests/pthread.in.h\n gnulib-tests/pthread_sigmask.c\n gnulib-tests/qemu.h\n gnulib-tests/raise.c\n gnulib-tests/sched.in.h\n gnulib-tests/sched_yield.c\n gnulib-tests/secure_getenv.c\n gnulib-tests/select.c\n gnulib-tests/setsockopt.c\n gnulib-tests/sig-handler.c\n gnulib-tests/sig-handler.h\n gnulib-tests/sigaction.c\n gnulib-tests/signal.in.h\n gnulib-tests/sigprocmask.c\n gnulib-tests/sleep.c\n gnulib-tests/socket.c\n gnulib-tests/sys_ioctl.in.h\n gnulib-tests/sys_random.in.h\n gnulib-tests/sys_select.in.h\n gnulib-tests/tempname.c\n gnulib-tests/tempname.h\n gnulib-tests/thread-optim.h\n gnulib-tests/uinttostr.c\n gnulib-tests/umaxtostr.c\n gnulib-tests/usleep.c\n gnulib-tests/w32sock.h\n gnulib-tests/wctomb-impl.h\n gnulib-tests/wctomb.c\n gnulib-tests/windows-thread.c\n gnulib-tests/windows-thread.h\n gnulib-tests/windows-tls.c\n gnulib-tests/windows-tls.h\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/atoll.c\n gnulib-tests/setlocale.c\n gnulib-tests/symlink.c\n gnulib-tests/test-binary-io.sh\n gnulib-tests/test-btowc1.sh\n gnulib-tests/test-btowc2.sh\n gnulib-tests/test-c-strcase.sh\n gnulib-tests/test-closein.sh\n gnulib-tests/test-fflush2.sh\n gnulib-tests/test-fpending.sh\n gnulib-tests/test-freadahead.sh\n gnulib-tests/test-fseek.sh\n gnulib-tests/test-fseek2.sh\n gnulib-tests/test-fseeko.sh\n gnulib-tests/test-fseeko2.sh\n gnulib-tests/test-fseeko3.sh\n gnulib-tests/test-fseeko4.sh\n gnulib-tests/test-ftell.sh\n gnulib-tests/test-ftell2.sh\n gnulib-tests/test-ftello.sh\n gnulib-tests/test-ftello2.sh\n gnulib-tests/test-ftello4.sh\n gnulib-tests/test-ftruncate.sh\n gnulib-tests/test-getcwd.sh\n gnulib-tests/test-iswdigit.sh\n gnulib-tests/test-iswxdigit.sh\n gnulib-tests/test-lseek.sh\n gnulib-tests/test-mbrtowc-w32-1.sh\n gnulib-tests/test-mbrtowc-w32-2.sh\n gnulib-tests/test-mbrtowc-w32-3.sh\n gnulib-tests/test-mbrtowc-w32-4.sh\n gnulib-tests/test-mbrtowc-w32-5.sh\n gnulib-tests/test-mbrtowc-w32-6.sh\n gnulib-tests/test-mbrtowc-w32-7.sh\n gnulib-tests/test-mbrtowc1.sh\n gnulib-tests/test-mbrtowc2.sh\n gnulib-tests/test-mbrtowc3.sh\n gnulib-tests/test-mbrtowc4.sh\n gnulib-tests/test-mbrtowc5.sh\n gnulib-tests/test-mbscasestr2.sh\n gnulib-tests/test-mbscasestr3.sh\n gnulib-tests/test-mbscasestr4.sh\n gnulib-tests/test-mbsinit.sh\n gnulib-tests/test-mbsrtowcs1.sh\n gnulib-tests/test-mbsrtowcs2.sh\n gnulib-tests/test-mbsrtowcs3.sh\n gnulib-tests/test-mbsrtowcs4.sh\n gnulib-tests/test-mbsstr2.sh\n gnulib-tests/test-mbsstr3.sh\n gnulib-tests/test-nl_langinfo.sh\n gnulib-tests/test-perror.sh\n gnulib-tests/test-select-in.sh\n gnulib-tests/test-select-out.sh\n gnulib-tests/test-setlocale1.sh\n gnulib-tests/test-setlocale2.sh\n gnulib-tests/test-verify.sh\n gnulib-tests/test-wcrtomb-w32-1.sh\n gnulib-tests/test-wcrtomb-w32-2.sh\n gnulib-tests/test-wcrtomb-w32-3.sh\n gnulib-tests/test-wcrtomb-w32-4.sh\n gnulib-tests/test-wcrtomb-w32-5.sh\n gnulib-tests/test-wcrtomb-w32-6.sh\n gnulib-tests/test-wcrtomb-w32-7.sh\n gnulib-tests/test-wcrtomb.sh\n gnulib-tests/test-xstrtol.sh\n gnulib-tests/test-xstrtoumax.sh\n gnulib-tests/test-yesno.sh\n gnulib-tests/tmpdir.h\n gnulib-tests/tmpfile.c\n gnulib-tests/wctob.c\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: gnulib-tests/glthread/*\nCopyright: 1985, 1987-2022, Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: 2006, 2008-2022, Free Software Foundation, Inc.\nLicense: ISC and/or LGPL-2.1+\n\nFiles: gnulib-tests/putenv.c\n gnulib-tests/strtol.c\nCopyright: 1991-2000, 2002-2022, Free Software\nLicense: LGPL-3+\n\nFiles: gnulib-tests/strtoll.c\n gnulib-tests/tmpdir.c\nCopyright: 1995-1997, 1999, 2001-2004, 2006, 2009-2022, Free Software Foundation\nLicense: LGPL-3+\n\nFiles: gnulib-tests/test-dynarray.c\nCopyright: 2004-2022, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: gnulib-tests/uniwidth/test-uc_width2.sh\nCopyright: 1991-2022, Free Software Foundation, Inc.\nLicense: LGPL-3+\n\nFiles: lib/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: locate/locate.1\n locate/locatedb.5\n locate/updatedb.1\nCopyright: Copyright (co 1994-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: m4/*\nCopyright: 1995-2022, Free Software Foundation, Inc.\nLicense: FSFULLR\n\nFiles: m4/nullsort.m4\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: tests/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/*\nCopyright: 1985-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: xargs/xargs.1\nCopyright: Copyright (co 1990-2022, Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: BSD-3-clause\n The BSD License\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n .\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission. \n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: FSFULLR\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian systems, the complete text of version 1.3 of the GNU Free\n Documentation License can be found in '/usr/share/common-licenses/GFDL-1.3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 3 dated June, 2007, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-3'.\n\nLicense: ISC\n The ISC License\n .\n Copyright (c) 2023 by the copyright holder\n .\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Library General Public License as published by the\n Free Software Foundation; version 2 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2 of the GNU Library\n General Public License can be found in '/usr/share/common-licenses/LGPL-2'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 2.1 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 2.1 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-3\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published by the\n Free Software Foundation; version 3 of the License, or (at\n your option) any later version.\n On Debian systems, the complete text of version 3 of the GNU Lesser\n General Public License can be found in '/usr/share/common-licenses/LGPL-3'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/gcc-12-base at 12.2.0-14?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2918,6 +8523,65 @@
"content": "0a43a9785f32d517a967d99e00d8e0a69edc0be09d4e63a08d7fd64466a11a0f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GnuPG - The GNU Privacy Guard (modern version)\nUpstream-Contact: GnuPG development mailing list <gnupg-devel at gnupg.org>\nSource: https://gnupg.org/download/\n\nFiles: *\nCopyright: 1992, 1995-2020, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: agent/command.c\n agent/command-ssh.c\n agent/gpg-agent.c\n common/homedir.c\n common/sysutils.c\n g10/mainproc.c\nCopyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc\n 2013, Werner Koch\nLicense: GPL-3+\n\nFiles: autogen.sh\nCopyright: 2003, g10 Code GmbH\nLicense: permissive\n\nFiles: common/gc-opt-flags.h\n common/i18n.h\n tools/clean-sat.c\n tools/no-libgcrypt.c\nCopyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc\nLicense: permissive\n\nFiles: common/localename.c\nCopyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: dirmngr/dns.c\n dirmngr/dns.h\nCopyright: 2008-2010, 2012-2016 William Ahern\nLicense: Expat\n\nFiles: doc/yat2m.c\n scd/app-geldkarte.c\nCopyright: 2004, 2005, g10 Code GmbH\n 2006, 2008, 2009, 2011, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: scd/ccid-driver.h\n scd/ccid-driver.c\nCopyright: 2003-2007, Free Software Foundation, Inc\nLicense: GPL-3+ or BSD-3-clause\n\nFiles: tools/rfc822parse.c\n tools/rfc822parse.h\nCopyright: 1999-2000, Werner Koch, Duesseldorf\n 2003-2004, g10 Code GmbH\nLicense: LGPL-3+\n\nFiles: tools/sockprox.c\nCopyright: 2007, g10 Code GmbH\nLicense: GPL-3+\n\nFiles: doc/OpenPGP\nCopyright: 1998-2013 Free Software Foundation, Inc.\n 1997, 1998, 2013 Werner Koch\n 1998 The Internet Society\nLicense: RFC-Reference\n\nFiles: tests/gpgscm/*\nCopyright: 2000, Dimitrios Souflis\n 2016, Justus Winter, Werner Koch\nLicense: TinySCHEME\n\nFiles: debian/*\nCopyright: 1998-2022 Debian GnuPG packagers, including\n Eric Dorland <eric at debian.org>\n Daniel Kahn Gillmor <dkg at fifthhorseman.net>\n NIIBE Yutaka <gniibe at fsij.org>\nLicense: GPL-3+\n\nFiles: debian/org.gnupg.scdaemon.metainfo.xml\nCopyright: 2017 Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nComment: This file is licensed permissively for the sake of AppStream\nLicense: CC0-1.0\n\nLicense: TinySCHEME\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither the name of Dimitrios Souflis nor the names of the\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nLicense: permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE.\n\nLicense: RFC-Reference\n doc/OpenPGP merely cites and references IETF Draft\n draft-ietf-openpgp-formats-07.txt. This is believed to be fair use;\n but if not, it's covered by the source document's license under\n the 'comment on' clause. The license statement follows.\n .\n This document and translations of it may be copied and furnished to\n others, and derivative works that comment on or otherwise explain it\n or assist in its implementation may be prepared, copied, published\n and distributed, in whole or in part, without restriction of any\n kind, provided that the above copyright notice and this paragraph\n are included on all such copies and derivative works. However, this\n document itself may not be modified in any way, such as by removing\n the copyright notice or references to the Internet Society or other\n Internet organizations, except as needed for the purpose of\n developing Internet standards in which case the procedures for\n copyrights defined in the Internet Standards process must be\n followed, or as required to translate it into languages other than\n English.\n .\n The limited permissions granted above are perpetual and will not be\n revoked by the Internet Society or its successors or assigns.\n\n\nLicense: GPL-3+\n GnuPG is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n GnuPG is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2.1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: CC0-1.0\n To the extent possible under law, the author(s) have dedicated all\n copyright and related and neighboring rights to this software to the public\n domain worldwide. This software is distributed without any warranty.\n .\n On Debian systems, the complete text of the CC0 license, version 1.0,\n can be found in /usr/share/common-licenses/CC0-1.0.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GnuPG - The GNU Privacy Guard (modern version)\nUpstream-Contact: GnuPG development mailing list <gnupg-devel at gnupg.org>\nSource: https://gnupg.org/download/\n\nFiles: *\nCopyright: 1992, 1995-2020, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: agent/command.c\n agent/command-ssh.c\n agent/gpg-agent.c\n common/homedir.c\n common/sysutils.c\n g10/mainproc.c\nCopyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc\n 2013, Werner Koch\nLicense: GPL-3+\n\nFiles: autogen.sh\nCopyright: 2003, g10 Code GmbH\nLicense: permissive\n\nFiles: common/gc-opt-flags.h\n common/i18n.h\n tools/clean-sat.c\n tools/no-libgcrypt.c\nCopyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc\nLicense: permissive\n\nFiles: common/localename.c\nCopyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: dirmngr/dns.c\n dirmngr/dns.h\nCopyright: 2008-2010, 2012-2016 William Ahern\nLicense: Expat\n\nFiles: doc/yat2m.c\n scd/app-geldkarte.c\nCopyright: 2004, 2005, g10 Code GmbH\n 2006, 2008, 2009, 2011, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: scd/ccid-driver.h\n scd/ccid-driver.c\nCopyright: 2003-2007, Free Software Foundation, Inc\nLicense: GPL-3+ or BSD-3-clause\n\nFiles: tools/rfc822parse.c\n tools/rfc822parse.h\nCopyright: 1999-2000, Werner Koch, Duesseldorf\n 2003-2004, g10 Code GmbH\nLicense: LGPL-3+\n\nFiles: tools/sockprox.c\nCopyright: 2007, g10 Code GmbH\nLicense: GPL-3+\n\nFiles: doc/OpenPGP\nCopyright: 1998-2013 Free Software Foundation, Inc.\n 1997, 1998, 2013 Werner Koch\n 1998 The Internet Society\nLicense: RFC-Reference\n\nFiles: tests/gpgscm/*\nCopyright: 2000, Dimitrios Souflis\n 2016, Justus Winter, Werner Koch\nLicense: TinySCHEME\n\nFiles: debian/*\nCopyright: 1998-2022 Debian GnuPG packagers, including\n Eric Dorland <eric at debian.org>\n Daniel Kahn Gillmor <dkg at fifthhorseman.net>\n NIIBE Yutaka <gniibe at fsij.org>\nLicense: GPL-3+\n\nFiles: debian/org.gnupg.scdaemon.metainfo.xml\nCopyright: 2017 Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nComment: This file is licensed permissively for the sake of AppStream\nLicense: CC0-1.0\n\nLicense: TinySCHEME\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither the name of Dimitrios Souflis nor the names of the\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nLicense: permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE.\n\nLicense: RFC-Reference\n doc/OpenPGP merely cites and references IETF Draft\n draft-ietf-openpgp-formats-07.txt. This is believed to be fair use;\n but if not, it's covered by the source document's license under\n the 'comment on' clause. The license statement follows.\n .\n This document and translations of it may be copied and furnished to\n others, and derivative works that comment on or otherwise explain it\n or assist in its implementation may be prepared, copied, published\n and distributed, in whole or in part, without restriction of any\n kind, provided that the above copyright notice and this paragraph\n are included on all such copies and derivative works. However, this\n document itself may not be modified in any way, such as by removing\n the copyright notice or references to the Internet Society or other\n Internet organizations, except as needed for the purpose of\n developing Internet standards in which case the procedures for\n copyrights defined in the Internet Standards process must be\n followed, or as required to translate it into languages other than\n English.\n .\n The limited permissions granted above are perpetual and will not be\n revoked by the Internet Society or its successors or assigns.\n\n\nLicense: GPL-3+\n GnuPG is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n GnuPG is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2.1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: CC0-1.0\n To the extent possible under law, the author(s) have dedicated all\n copyright and related and neighboring rights to this software to the public\n domain worldwide. This software is distributed without any warranty.\n .\n On Debian systems, the complete text of the CC0 license, version 1.0,\n can be found in /usr/share/common-licenses/CC0-1.0.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "RFC-Reference",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GnuPG - The GNU Privacy Guard (modern version)\nUpstream-Contact: GnuPG development mailing list <gnupg-devel at gnupg.org>\nSource: https://gnupg.org/download/\n\nFiles: *\nCopyright: 1992, 1995-2020, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: agent/command.c\n agent/command-ssh.c\n agent/gpg-agent.c\n common/homedir.c\n common/sysutils.c\n g10/mainproc.c\nCopyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc\n 2013, Werner Koch\nLicense: GPL-3+\n\nFiles: autogen.sh\nCopyright: 2003, g10 Code GmbH\nLicense: permissive\n\nFiles: common/gc-opt-flags.h\n common/i18n.h\n tools/clean-sat.c\n tools/no-libgcrypt.c\nCopyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc\nLicense: permissive\n\nFiles: common/localename.c\nCopyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: dirmngr/dns.c\n dirmngr/dns.h\nCopyright: 2008-2010, 2012-2016 William Ahern\nLicense: Expat\n\nFiles: doc/yat2m.c\n scd/app-geldkarte.c\nCopyright: 2004, 2005, g10 Code GmbH\n 2006, 2008, 2009, 2011, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: scd/ccid-driver.h\n scd/ccid-driver.c\nCopyright: 2003-2007, Free Software Foundation, Inc\nLicense: GPL-3+ or BSD-3-clause\n\nFiles: tools/rfc822parse.c\n tools/rfc822parse.h\nCopyright: 1999-2000, Werner Koch, Duesseldorf\n 2003-2004, g10 Code GmbH\nLicense: LGPL-3+\n\nFiles: tools/sockprox.c\nCopyright: 2007, g10 Code GmbH\nLicense: GPL-3+\n\nFiles: doc/OpenPGP\nCopyright: 1998-2013 Free Software Foundation, Inc.\n 1997, 1998, 2013 Werner Koch\n 1998 The Internet Society\nLicense: RFC-Reference\n\nFiles: tests/gpgscm/*\nCopyright: 2000, Dimitrios Souflis\n 2016, Justus Winter, Werner Koch\nLicense: TinySCHEME\n\nFiles: debian/*\nCopyright: 1998-2022 Debian GnuPG packagers, including\n Eric Dorland <eric at debian.org>\n Daniel Kahn Gillmor <dkg at fifthhorseman.net>\n NIIBE Yutaka <gniibe at fsij.org>\nLicense: GPL-3+\n\nFiles: debian/org.gnupg.scdaemon.metainfo.xml\nCopyright: 2017 Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nComment: This file is licensed permissively for the sake of AppStream\nLicense: CC0-1.0\n\nLicense: TinySCHEME\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither the name of Dimitrios Souflis nor the names of the\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nLicense: permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE.\n\nLicense: RFC-Reference\n doc/OpenPGP merely cites and references IETF Draft\n draft-ietf-openpgp-formats-07.txt. This is believed to be fair use;\n but if not, it's covered by the source document's license under\n the 'comment on' clause. The license statement follows.\n .\n This document and translations of it may be copied and furnished to\n others, and derivative works that comment on or otherwise explain it\n or assist in its implementation may be prepared, copied, published\n and distributed, in whole or in part, without restriction of any\n kind, provided that the above copyright notice and this paragraph\n are included on all such copies and derivative works. However, this\n document itself may not be modified in any way, such as by removing\n the copyright notice or references to the Internet Society or other\n Internet organizations, except as needed for the purpose of\n developing Internet standards in which case the procedures for\n copyrights defined in the Internet Standards process must be\n followed, or as required to translate it into languages other than\n English.\n .\n The limited permissions granted above are perpetual and will not be\n revoked by the Internet Society or its successors or assigns.\n\n\nLicense: GPL-3+\n GnuPG is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n GnuPG is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2.1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: CC0-1.0\n To the extent possible under law, the author(s) have dedicated all\n copyright and related and neighboring rights to this software to the public\n domain worldwide. This software is distributed without any warranty.\n .\n On Debian systems, the complete text of the CC0 license, version 1.0,\n can be found in /usr/share/common-licenses/CC0-1.0.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "TinySCHEME",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GnuPG - The GNU Privacy Guard (modern version)\nUpstream-Contact: GnuPG development mailing list <gnupg-devel at gnupg.org>\nSource: https://gnupg.org/download/\n\nFiles: *\nCopyright: 1992, 1995-2020, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: agent/command.c\n agent/command-ssh.c\n agent/gpg-agent.c\n common/homedir.c\n common/sysutils.c\n g10/mainproc.c\nCopyright: 1998-2007, 2009, 2012, Free Software Foundation, Inc\n 2013, Werner Koch\nLicense: GPL-3+\n\nFiles: autogen.sh\nCopyright: 2003, g10 Code GmbH\nLicense: permissive\n\nFiles: common/gc-opt-flags.h\n common/i18n.h\n tools/clean-sat.c\n tools/no-libgcrypt.c\nCopyright: 1998-2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc\nLicense: permissive\n\nFiles: common/localename.c\nCopyright: 1985, 1989-1993, 1995-2003, 2007, 2008 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: dirmngr/dns.c\n dirmngr/dns.h\nCopyright: 2008-2010, 2012-2016 William Ahern\nLicense: Expat\n\nFiles: doc/yat2m.c\n scd/app-geldkarte.c\nCopyright: 2004, 2005, g10 Code GmbH\n 2006, 2008, 2009, 2011, Free Software Foundation, Inc\nLicense: GPL-3+\n\nFiles: scd/ccid-driver.h\n scd/ccid-driver.c\nCopyright: 2003-2007, Free Software Foundation, Inc\nLicense: GPL-3+ or BSD-3-clause\n\nFiles: tools/rfc822parse.c\n tools/rfc822parse.h\nCopyright: 1999-2000, Werner Koch, Duesseldorf\n 2003-2004, g10 Code GmbH\nLicense: LGPL-3+\n\nFiles: tools/sockprox.c\nCopyright: 2007, g10 Code GmbH\nLicense: GPL-3+\n\nFiles: doc/OpenPGP\nCopyright: 1998-2013 Free Software Foundation, Inc.\n 1997, 1998, 2013 Werner Koch\n 1998 The Internet Society\nLicense: RFC-Reference\n\nFiles: tests/gpgscm/*\nCopyright: 2000, Dimitrios Souflis\n 2016, Justus Winter, Werner Koch\nLicense: TinySCHEME\n\nFiles: debian/*\nCopyright: 1998-2022 Debian GnuPG packagers, including\n Eric Dorland <eric at debian.org>\n Daniel Kahn Gillmor <dkg at fifthhorseman.net>\n NIIBE Yutaka <gniibe at fsij.org>\nLicense: GPL-3+\n\nFiles: debian/org.gnupg.scdaemon.metainfo.xml\nCopyright: 2017 Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nComment: This file is licensed permissively for the sake of AppStream\nLicense: CC0-1.0\n\nLicense: TinySCHEME\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n .\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither the name of Dimitrios Souflis nor the names of the\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nLicense: permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE.\n\nLicense: RFC-Reference\n doc/OpenPGP merely cites and references IETF Draft\n draft-ietf-openpgp-formats-07.txt. This is believed to be fair use;\n but if not, it's covered by the source document's license under\n the 'comment on' clause. The license statement follows.\n .\n This document and translations of it may be copied and furnished to\n others, and derivative works that comment on or otherwise explain it\n or assist in its implementation may be prepared, copied, published\n and distributed, in whole or in part, without restriction of any\n kind, provided that the above copyright notice and this paragraph\n are included on all such copies and derivative works. However, this\n document itself may not be modified in any way, such as by removing\n the copyright notice or references to the Internet Society or other\n Internet organizations, except as needed for the purpose of\n developing Internet standards in which case the procedures for\n copyrights defined in the Internet Standards process must be\n followed, or as required to translate it into languages other than\n English.\n .\n The limited permissions granted above are perpetual and will not be\n revoked by the Internet Society or its successors or assigns.\n\n\nLicense: GPL-3+\n GnuPG is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n GnuPG is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: LGPL-3+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 3 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1 of\n the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the full text of the GNU Lesser General Public\n License version 2.1 can be found in the file\n `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: CC0-1.0\n To the extent possible under law, the author(s) have dedicated all\n copyright and related and neighboring rights to this software to the public\n domain worldwide. This software is distributed without any warranty.\n .\n On Debian systems, the complete text of the CC0 license, version 1.0,\n can be found in /usr/share/common-licenses/CC0-1.0.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/gpgv at 2.2.40-1.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2934,6 +8598,13 @@
"content": "3264acea728df3c48a54f20e9291b965130e306b9d00adac76647049da7196df"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/grep at 3.8-5?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2950,6 +8621,29 @@
"content": "eabec1dde2834f72540d7b93fc5df2625f52611c06d93d61f5cdb12480e0e6a3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-1.3+-no-invariant",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU Gzip\nUpstream-Contact: http://www.gnu.org/software/gzip/\nSource: https://ftp.gnu.org/gnu/gzip\n\nFiles: *\nCopyright: 1999-2022 Free Software Foundation, Inc.\n 1992-1993 Jean-loup Gailly and Mark Adler\nLicense: GPL-3+\n\nFiles: debian/*\nCopyright: 1995-2017 Bdale Garbee <bdale at gag.com>\nLicense: GPL-3+\n\nFiles: doc/* NEWS README\nCopyright: 1999-2022 Free Software Foundation, Inc. http://fsf.org/\n 1992-1993 Jean-loup Gailly\nLicense: GFDL-1.3+-no-invariant\n\nFiles: gzip.1 zless.1\nCopyright: 1998-2022 Free Software Foundation, Inc.\n 1992-1993 Jean-loup Gailly\nLicense: FSF-manpages\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GFDL-1.3+-no-invariant\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, with no Front-Cover Texts, and with no Back-Cover\n Texts.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL-3'.\n\nLicense: FSF-manpages\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n are preserved on all copies.\n .\n Permission is granted to process this file through troff and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "FSF-manpages",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU Gzip\nUpstream-Contact: http://www.gnu.org/software/gzip/\nSource: https://ftp.gnu.org/gnu/gzip\n\nFiles: *\nCopyright: 1999-2022 Free Software Foundation, Inc.\n 1992-1993 Jean-loup Gailly and Mark Adler\nLicense: GPL-3+\n\nFiles: debian/*\nCopyright: 1995-2017 Bdale Garbee <bdale at gag.com>\nLicense: GPL-3+\n\nFiles: doc/* NEWS README\nCopyright: 1999-2022 Free Software Foundation, Inc. http://fsf.org/\n 1992-1993 Jean-loup Gailly\nLicense: GFDL-1.3+-no-invariant\n\nFiles: gzip.1 zless.1\nCopyright: 1998-2022 Free Software Foundation, Inc.\n 1992-1993 Jean-loup Gailly\nLicense: FSF-manpages\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GFDL-1.3+-no-invariant\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3 or\n any later version published by the Free Software Foundation; with no\n Invariant Sections, with no Front-Cover Texts, and with no Back-Cover\n Texts.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL-3'.\n\nLicense: FSF-manpages\n Permission is granted to make and distribute verbatim copies of\n this manual provided the copyright notice and this permission notice\n are preserved on all copies.\n .\n Permission is granted to process this file through troff and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the Foundation.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/gzip at 1.12-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2966,6 +8660,13 @@
"content": "17d9a2f3c05004499d80e180d2440fd716f84c32b65f09d96c9a024af4d1d0e7"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/hostname at 3.23+nmu1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2982,6 +8683,13 @@
"content": "304383c78f31e3fe419d30f3ddc710c120c412d654bafe2754258da6a7f7c059"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/ifupdown at 0.8.41?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -2998,6 +8706,18 @@
"content": "3949151042bb50f568808c316a16b4fd711b44414c754e6076a61b4b936f7d51"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/init at 1.65.2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3014,6 +8734,18 @@
"content": "f9ce24cbf69957dc1851fc55adba0a60b5bc617d51587b6478f2be64786442f1"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/init-system-helpers at 1.65.2?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3030,6 +8762,13 @@
"content": "1204b29e916e836267096d0b9d778106752f821ebde0d281539008b4386d9070"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/iproute2 at 6.1.0-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3046,6 +8785,23 @@
"content": "6ca78fda233f9ca803c5048e29dd558ad7a2af7fe6db53e9fce76d9d750538c8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/iputils-ping at 3:20221126-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3062,6 +8818,18 @@
"content": "243dd7288443d3edec79558925b839f038637964cecb7202a9a0f95fadbeb6e3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MPL-2.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/isc-dhcp-client at 4.4.3-P1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3078,6 +8846,18 @@
"content": "fae84a7dd63ef610ef5ff5e42972252f25e86f79a989aba62755a2cf3f9e3e6a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MPL-2.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/isc-dhcp-common at 4.4.3-P1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3094,6 +8874,18 @@
"content": "e21ae247204fe8a14ac29a5f510227d45b41cd3c41059cc942f2502d25765165"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/kmod at 30+20221128-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3110,6 +8902,34 @@
"content": "3c4ee8ce5e0f625e1169da9584e309c375a8a68e22de5821461d14446825cc1a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GPL-3.0-or-later OR Less",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This package was debianized by Thomas Schoepf <schoepf at debian.org> on\n Wed, 8 Sep 1999 13:28:20 +0200.\n .\n The previous maintainers were Darren Stalder <torin at daft.com>,\n Erick Branderhorst <branderh at debian.org> and\n Bill Mitchell <mitchell at mdd.comm.mot.com>.\nSource: http://www.greenwoodsoftware.com/less/\nUpstream-Contact: Mark Nudelman <markn at greenwoodsoftware.com>\n\nFiles: *\nCopyright: (C) 1984-2021 Mark Nudelman\nLicense: GPL-3+ or Less\n This program is free software. You may redistribute it and/or\n modify it under the terms of either:\n .\n 1. The GNU General Public License, as published by the Free\n Software Foundation; either version 3, or (at your option) any\n later version. A copy of this license is in the file\n /usr/share/common-licenses/GPL-3\n or\n 2. The Less License.\n\nLicense: GPL-3+\n You should have received a copy of the GNU General Public License\n along with the source for less; see the file COPYING.\n If not, write to the Free Software Foundation, 59 Temple Place,\n Suite 330, Boston, MA 02111-1307, USA.\n\nLicense: Less\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice in the documentation and/or other materials provided with\n the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: scrsize.c\nCopyright: (C) 1984-2021 Mark Nudelman\n (c) 1987, X Consortium\nLicense: GPL-3+ or Less, and X11\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other\n dealings in this Software without prior written authorization from the X\n Consortium.\n\nFiles: regexp.c\nCopyright: (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\nLicense: Spencer-86\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nFiles: mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n Created: 1993-05-16\n Last modified: 1994-03-25\n Public domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later OR Less, AND X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This package was debianized by Thomas Schoepf <schoepf at debian.org> on\n Wed, 8 Sep 1999 13:28:20 +0200.\n .\n The previous maintainers were Darren Stalder <torin at daft.com>,\n Erick Branderhorst <branderh at debian.org> and\n Bill Mitchell <mitchell at mdd.comm.mot.com>.\nSource: http://www.greenwoodsoftware.com/less/\nUpstream-Contact: Mark Nudelman <markn at greenwoodsoftware.com>\n\nFiles: *\nCopyright: (C) 1984-2021 Mark Nudelman\nLicense: GPL-3+ or Less\n This program is free software. You may redistribute it and/or\n modify it under the terms of either:\n .\n 1. The GNU General Public License, as published by the Free\n Software Foundation; either version 3, or (at your option) any\n later version. A copy of this license is in the file\n /usr/share/common-licenses/GPL-3\n or\n 2. The Less License.\n\nLicense: GPL-3+\n You should have received a copy of the GNU General Public License\n along with the source for less; see the file COPYING.\n If not, write to the Free Software Foundation, 59 Temple Place,\n Suite 330, Boston, MA 02111-1307, USA.\n\nLicense: Less\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice in the documentation and/or other materials provided with\n the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: scrsize.c\nCopyright: (C) 1984-2021 Mark Nudelman\n (c) 1987, X Consortium\nLicense: GPL-3+ or Less, and X11\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other\n dealings in this Software without prior written authorization from the X\n Consortium.\n\nFiles: regexp.c\nCopyright: (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\nLicense: Spencer-86\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nFiles: mkinstalldirs\nCopyright: Noah Friedman <friedman at prep.ai.mit.edu>\nLicense: public-domain\n Created: 1993-05-16\n Last modified: 1994-03-25\n Public domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Spencer-86"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/less at 590-2.1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3126,6 +8946,18 @@
"content": "8be9df5795114bfe90e2be3d208ef47a5edd3fc7b3e20d387a597486d444e5e2"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libacl1 at 2.3.1-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3142,6 +8974,31 @@
"content": "4b79f49eafc2017374da9ec206b5495433eadd2b1ea078c3895c99e72825e9d3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: AppArmor\nUpstream-Contact: apparmor at lists.ubuntu.com\nSource: https://launchpad.net/apparmor\n\nFiles: *\nCopyright: 1998-2010 Novell/SuSE/Immunix\n 2008-2014 Canonical Ltd.\nLicense: GPL-2+\n\nFiles: changehat/pam_apparmor/*\nCopyright: 2006 SUSE Linux Products GmbH, Nuernberg, Germany\n 2002, 2003, 2004 SuSE GmbH Nuernberg, Germany\n 2002-2006 Novell/SuSE\n 2010 Canonical Ltd.\nLicense: BSD-3-clause or GPL-2+\n\nFiles: changehat/mod_apparmor/*\nCopyright: 2004-2006 Novell\n 2014 Canonical Ltd.\nLicense: LGPL-2.1+\n\nFiles: libraries/libapparmor/* parser/libapparmor_re/*\nCopyright: 1999-2008 Novell\n 2009-2013 Canonical Ltd.\nLicense: LGPL-2.1+\n\nFiles: profiles/apparmor.d/abstractions/mysql\nCopyright: 2002-2006 Novell/SUSE\n 2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.sbin.dnsmasq\nCopyright: 2009 John Dong <jdong at ubuntu.com>\n 2010 Canonical Ltd.\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/sbin.syslog-ng\nCopyright: 2006-2009 Novell/SUSE\n 2006 Christian Boltz\n 2010 Canonical Ltd.\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.*\nCopyright: 2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.auth\nCopyright: 2013 Christian Boltz\n 2014 Christian Wittmer\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.deliver\nCopyright: 2009 Dulmandakh Sukhbaatar <dulmandakh at gmail.com>\n 2009-2014 Canonical Ltd.\n 2011-2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.dovecot-auth\nCopyright: 2009-2013 Canonical Ltd.\n 2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.imap profiles/apparmor.d/usr.lib.dovecot.pop3\nCopyright: 2009-2010 Canonical Ltd.\n 2011-2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.imap-login profiles/apparmor.d/usr.lib.dovecot.pop3-login\nCopyright: 2009-2011 Canonical Ltd.\n 2013 Christian Boltz\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.managesieve\nCopyright: 2013 Christian Boltz\n 2014 Christian Wittmer\nLicense: GPL-2\n\nFiles: profiles/apparmor.d/usr.lib.dovecot.managesieve-login\nCopyright: 2009 Dulmandakh Sukhbaatar <dulmandakh at gmail.com>\n 2009-2011 Canonical Ltd.\n 2013 Christian Boltz\n 2014 Christian Wittmer\nLicense: GPL-2\n\nFiles: profiles/apparmor/profiles/extras/usr.bin.mlmmj-make-ml.sh\nCopyright: 2002-2005 Novell/SUSE\nLicense: GPL-2\n\nFiles: profiles/apparmor/profiles/extras/usr.bin.passwd\nCopyright: 2006 Volker Kuhlmann\nLicense: GPL-2\n\nFiles: debian/*\nCopyright: 2007-2011 Canonical Ltd.\n 2014-2022 intrigeri\nLicense: GPL-2\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: LGPL-2.1+\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n .\n On Debian systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libapparmor1 at 3.0.8-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3158,6 +9015,28 @@
"content": "ccab743f6784b4cc7bd69e1810630edaf726cd69c1e735e39a16266d470bfdc0"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libapt-pkg6.0 at 2.6.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3174,6 +9053,24 @@
"content": "4a8155b06270b88eed34d132acfc8ccc0b85499e1c4bfd7f31f8b199af42b1de"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "CC0 OR Apache-2.0",
+ "text": {
+ "content": "Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: phc-winner-argon2\nSource: https://github.com/P-H-C/phc-winner-argon2\nUpstream-Contact: https://github.com/P-H-C/phc-winner-argon2/issues\n\nFiles: *\nCopyright: 2015, Daniel Dinu\n 2015, Dmitry Khovratovich\n 2015, Jean-Philippe Aumasson\n 2015, Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: src/blake2/*\nCopyright: 2013-2015, Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: src/encoding.c\nCopyright: 2015, Thomas Pornin\nLicense: CC0 or Apache-2.0\n\nFiles: debian/*\nCopyright: 2016, Luca Bruno <lucab at debian.org>\nLicense: CC0\n\nFiles: debian/argon2.1\nCopyright: 2016, Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nLicense: CC0\n\nLicense: CC0\n /Statement of Purpose/\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work for\n the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the\n ideal of a free culture and the further production of creative, cultural\n and scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that he or\n she is an owner of Copyright and Related Rights in the Work, voluntarily\n elects to apply CC0 to the Work and publicly distribute the Work under\n its terms, with knowledge of his or her Copyright and Related Rights in\n the Work and the meaning and intended legal effect of CC0 on those rights.\n .\n *1. Copyright and Related Rights.* A Work made available under CC0 may\n be protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are not\n limited to, the following:\n .\n 1. the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n 5. rights protecting the extraction, dissemination, use and reuse of\n data in a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of\n the European Parliament and of the Council of 11 March 1996 on the\n legal protection of databases, and under any national implementation\n thereof, including any amended or successor version of such\n directive); and\n 7. other similar, equivalent or corresponding rights throughout the\n world based on applicable law or treaty, and any national\n implementations thereof.\n .\n *2. Waiver.* To the greatest extent permitted by, but not in\n contravention of, applicable law, Affirmer hereby overtly, fully,\n permanently, irrevocably and unconditionally waives, abandons, and\n surrenders all of Affirmer's Copyright and Related Rights and associated\n claims and causes of action, whether now known or unknown (including\n existing as well as future claims and causes of action), in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii) in\n any current or future medium and for any number of copies, and (iv) for\n any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n *3. Public License Fallback.* Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby grants\n to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license to\n exercise Affirmer's Copyright and Related Rights in the Work (i) in all\n territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii) in\n any current or future medium and for any number of copies, and (iv) for\n any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and\n in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in the\n Work or (ii) assert any associated claims and causes of action with\n respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n *4. Limitations and Disclaimers.*\n .\n 1. No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties of\n title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any use\n of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to\n this CC0 or use of the Work.\n\nLicense: Apache-2.0\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n https://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n .\n On Debian systems, the complete text of the Apache version 2.0 license\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "CC0",
+ "text": {
+ "content": "Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: phc-winner-argon2\nSource: https://github.com/P-H-C/phc-winner-argon2\nUpstream-Contact: https://github.com/P-H-C/phc-winner-argon2/issues\n\nFiles: *\nCopyright: 2015, Daniel Dinu\n 2015, Dmitry Khovratovich\n 2015, Jean-Philippe Aumasson\n 2015, Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: src/blake2/*\nCopyright: 2013-2015, Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: src/encoding.c\nCopyright: 2015, Thomas Pornin\nLicense: CC0 or Apache-2.0\n\nFiles: debian/*\nCopyright: 2016, Luca Bruno <lucab at debian.org>\nLicense: CC0\n\nFiles: debian/argon2.1\nCopyright: 2016, Daniel Kahn Gillmor <dkg at fifthhorseman.net>\nLicense: CC0\n\nLicense: CC0\n /Statement of Purpose/\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work for\n the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the\n ideal of a free culture and the further production of creative, cultural\n and scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that he or\n she is an owner of Copyright and Related Rights in the Work, voluntarily\n elects to apply CC0 to the Work and publicly distribute the Work under\n its terms, with knowledge of his or her Copyright and Related Rights in\n the Work and the meaning and intended legal effect of CC0 on those rights.\n .\n *1. Copyright and Related Rights.* A Work made available under CC0 may\n be protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are not\n limited to, the following:\n .\n 1. the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n 5. rights protecting the extraction, dissemination, use and reuse of\n data in a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of\n the European Parliament and of the Council of 11 March 1996 on the\n legal protection of databases, and under any national implementation\n thereof, including any amended or successor version of such\n directive); and\n 7. other similar, equivalent or corresponding rights throughout the\n world based on applicable law or treaty, and any national\n implementations thereof.\n .\n *2. Waiver.* To the greatest extent permitted by, but not in\n contravention of, applicable law, Affirmer hereby overtly, fully,\n permanently, irrevocably and unconditionally waives, abandons, and\n surrenders all of Affirmer's Copyright and Related Rights and associated\n claims and causes of action, whether now known or unknown (including\n existing as well as future claims and causes of action), in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii) in\n any current or future medium and for any number of copies, and (iv) for\n any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n *3. Public License Fallback.* Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby grants\n to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license to\n exercise Affirmer's Copyright and Related Rights in the Work (i) in all\n territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii) in\n any current or future medium and for any number of copies, and (iv) for\n any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and\n in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in the\n Work or (ii) assert any associated claims and causes of action with\n respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n *4. Limitations and Disclaimers.*\n .\n 1. No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties of\n title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any use\n of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to\n this CC0 or use of the Work.\n\nLicense: Apache-2.0\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n https://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n .\n On Debian systems, the complete text of the Apache version 2.0 license\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libargon2-1 at 0~20171227-0.3+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3190,6 +9087,18 @@
"content": "c4945123d66d0503ba42e2fc0585abc76d0838978c6d277b9cc37a4da25d1a34"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libattr1 at 1:2.5.1-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3206,6 +9115,18 @@
"content": "17d0341ca6ce604ce59c296780ac2c2a24141a769823c50669af942c025e6591"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libaudit-common at 1:3.0.9-1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3222,6 +9143,18 @@
"content": "30954df4b5a7c505661ba8ae5e6ea94f5805e408899fb400783bb166eb5ff306"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libaudit1 at 1:3.0.9-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3238,6 +9171,71 @@
"content": "151f59ca2b73ce8f85a576980f019dbbf9d44dd6ff4331f7954163e3704c1c06"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libblkid1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3246,28 +9244,162 @@
"version": "1:1.1.0-1",
"hashes": [
{
- "alg": "MD5",
- "content": "a3c5e18dbda8492943474bc9ad21386c"
+ "alg": "MD5",
+ "content": "a3c5e18dbda8492943474bc9ad21386c"
+ },
+ {
+ "alg": "SHA-256",
+ "content": "1b3787787b884d835ec1008ed51e62cd9256ce1ed8a0d2917d9965af08140674"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "name": "LGPL-2.1-only OR BSD-2-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libbpf\nSource: https://github.com/libbpf/libbpf\n\nFiles: *\nCopyright: 2013-2015 Alexei Starovoitov <ast at kernel.org>\n 2015 Wang Nan <wangnan0 at huawei.com>\n 2015 Huawei Inc.\n 2018, 2019, 2021 Facebook\n 2017 Nicira, Inc.\n 2019 Isovalent, Inc.\n 2019 Netronome Systems, Inc.\n 2003-2013 Thomas Graf <tgraf at suug.ch>\n 2018-2019 Intel Corporation.\n 2022 Meta Platforms, Inc. and affiliates.\nLicense: LGPL-2.1 or BSD-2-Clause\n\nFiles: docs/conf.py\nCopyright: Grant Seltzer <grantseltzer at gmail.com>\nLicense: GPL-2.0\n\nFiles: include/uapi/linux/bpf.h\n include/uapi/linux/bpf_common.h\n include/uapi/linux/btf.h\n include/uapi/linux/if_link.h\n include/uapi/linux/if_xdp.h\n include/uapi/linux/netlink.h\nCopyright: 2011-2014 PLUMgrid, http://plumgrid.com\n 2018 Facebook\n 2018 Intel Corporation.\nLicense: GPL-2 with Linux-syscall-note exception\n\nFiles: debian/*\nCopyright: 2018 Ben Hutchings <ben at decadent.org.uk>\n 2018 Hilko Bengen <bengen at debian.org>\n 2018 Luca Boccassi <bluca at debian.org>\n 2020 Sudip Mukherjee <sudipm.mukherjee at gmail.com>\nLicense: GPL-2+\n\nLicense: GPL-2.0\n This program is free software; you can redistribute it\n and/or modify it under the terms of the GNU General Public\n License version 2 as published by the Free Software\n Foundation.\n .\n This program is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied\n warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. See the GNU General Public License for more\n details.\n .\n You should have received a copy of the GNU General Public\n License along with this package; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n Boston, MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2.1\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation;\n version 2.1 of the License (not later!)\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, see <http://www.gnu.org/licenses>\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: GPL-2 with Linux-syscall-note exception\n NOTE! This copyright does *not* cover user programs that use kernel services\n by normal system calls - this is merely considered normal use of the kernel,\n and does *not* fall under the heading of \"derived work\". Also note that the\n GPL below is copyrighted by the Free Software Foundation, but the instance of\n code that it refers to (the Linux kernel) is copyrighted by me and others who\n actually wrote it.\n .\n Also note that the only valid version of the GPL as far as the kernel is\n concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x\n or whatever), unless explicitly otherwise stated.\n .\n Linus Torvalds\n .\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian and systems the full text of the GNU General Public\n License version 2 can be found in the file\n \"/usr/share/common-licenses/GPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
+ "purl": "pkg:deb/debian/libbpf1 at 1:1.1.0-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
+ },
+ {
+ "type": "library",
+ "name": "libbsd0",
+ "version": "0.11.7-2",
+ "hashes": [
+ {
+ "alg": "MD5",
+ "content": "5d382c22b266715b019f46576a3f3146"
+ },
+ {
+ "alg": "SHA-256",
+ "content": "bb31cc8b40f962a85b2cec970f7f79cc704a1ae4bad24257a822055404b2c60b"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-4-clause-Niels-Provos",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-Regents",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-Regents AND BSD-2-clause-NetBSD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-author",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-John-Birrell",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "libutil-David-Nugent"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-2-clause-NetBSD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-2-clause-verbatim",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-2-clause-author",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
},
{
- "alg": "SHA-256",
- "content": "1b3787787b884d835ec1008ed51e62cd9256ce1ed8a0d2917d9965af08140674"
- }
- ],
- "purl": "pkg:deb/debian/libbpf1 at 1:1.1.0-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
- },
- {
- "type": "library",
- "name": "libbsd0",
- "version": "0.11.7-2",
- "hashes": [
+ "license": {
+ "id": "ISC"
+ }
+ },
{
- "alg": "MD5",
- "content": "5d382c22b266715b019f46576a3f3146"
+ "license": {
+ "name": "ISC-Original",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2004-2006, 2008-2022 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n\nFiles:\n man/arc4random.3bsd\nCopyright:\n Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>\n All rights reserved.\nLicense: BSD-4-clause-Niels-Provos\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Niels Provos.\n 4. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/bsd/err.h\n include/bsd/stdlib.h\n include/bsd/sys/param.h\n include/bsd/unistd.h\n src/bsd_getopt.c\n src/err.c\n src/fgetln.c\n src/progname.c\nCopyright:\n Copyright \u00a9 2005, 2008-2012, 2019 Guillem Jover <guillem at hadrons.org>\n Copyright \u00a9 2005 Hector Garcia Alvarez\n Copyright \u00a9 2005 Aurelien Jarno\n Copyright \u00a9 2006 Robert Millan\n Copyright \u00a9 2018 Facebook, Inc.\nLicense: BSD-3-clause\n\nFiles:\n include/bsd/netinet/ip_icmp.h\n include/bsd/sys/bitstring.h\n include/bsd/sys/queue.h\n include/bsd/sys/time.h\n include/bsd/timeconv.h\n include/bsd/vis.h\n man/bitstring.3bsd\n man/errc.3bsd\n man/explicit_bzero.3bsd\n man/fgetln.3bsd\n man/fgetwln.3bsd\n man/fpurge.3bsd\n man/funopen.3bsd\n man/getbsize.3bsd\n man/heapsort.3bsd\n man/nlist.3bsd\n man/pwcache.3bsd\n man/queue.3bsd\n man/radixsort.3bsd\n man/reallocarray.3bsd\n man/reallocf.3bsd\n man/setmode.3bsd\n man/strmode.3bsd\n man/strnstr.3bsd\n man/strtoi.3bsd\n man/strtou.3bsd\n man/unvis.3bsd\n man/vis.3bsd\n man/wcslcpy.3bsd\n src/getbsize.c\n src/heapsort.c\n src/merge.c\n src/nlist.c\n src/pwcache.c\n src/radixsort.c\n src/setmode.c\n src/strmode.c\n src/strnstr.c\n src/strtoi.c\n src/strtou.c\n src/unvis.c\nCopyright:\n Copyright \u00a9 1980, 1982, 1986, 1989-1994\n The Regents of the University of California. All rights reserved.\n Copyright \u00a9 1992 Keith Muller.\n Copyright \u00a9 2001 Mike Barcroft <mike at FreeBSD.org>\n .\n Some code is derived from software contributed to Berkeley by\n the American National Standards Committee X3, on Information\n Processing Systems.\n .\n Some code is derived from software contributed to Berkeley by\n Peter McIlroy.\n .\n Some code is derived from software contributed to Berkeley by\n Ronnie Kon at Mindcraft Inc., Kevin Lew and Elmer Yglesias.\n .\n Some code is derived from software contributed to Berkeley by\n Dave Borman at Cray Research, Inc.\n .\n Some code is derived from software contributed to Berkeley by\n Paul Vixie.\n .\n Some code is derived from software contributed to Berkeley by\n Chris Torek.\n .\n Copyright \u00a9 UNIX System Laboratories, Inc.\n All or some portions of this file are derived from material licensed\n to the University of California by American Telephone and Telegraph\n Co. or Unix System Laboratories, Inc. and are reproduced herein with\n the permission of UNIX System Laboratories, Inc.\nLicense: BSD-3-clause-Regents\n\nFiles:\n src/vis.c\nCopyright:\n Copyright \u00a9 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n Copyright \u00a9 1999, 2005 The NetBSD Foundation, Inc.\n All rights reserved.\nLicense: BSD-3-clause-Regents and BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/libutil.h\nCopyright:\n Copyright \u00a9 1996 Peter Wemm <peter at FreeBSD.org>.\n All rights reserved.\n Copyright \u00a9 2002 Networks Associates Technology, Inc.\n All rights reserved.\nLicense: BSD-3-clause-author\n\nFiles:\n man/timeradd.3bsd\nCopyright:\n Copyright \u00a9 2009 Jukka Ruohonen <jruohonen at iki.fi>\n Copyright \u00a9 1999 Kelly Yancey <kbyanc at posi.net>\n All rights reserved.\nLicense: BSD-3-clause-John-Birrell\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n man/setproctitle.3bsd\nCopyright:\n Copyright \u00a9 1995 Peter Wemm <peter at FreeBSD.org>\n All rights reserved.\nLicense: libutil-David-Nugent\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice immediately at the beginning of the file, without modification,\n this list of conditions, and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. This work was done expressly for inclusion into FreeBSD. Other use\n is permitted provided this notation is included.\n 4. Absolutely no warranty of function or purpose is made by the author\n Peter Wemm.\n 5. Modifications may be freely made to this file providing the above\n conditions are met.\n\nFiles:\n include/bsd/stringlist.h\n man/fmtcheck.3bsd\n man/humanize_number.3bsd\n man/stringlist.3bsd\n man/timeval.3bsd\n src/fmtcheck.c\n src/humanize_number.c\n src/stringlist.c\n src/strtonum.c\nCopyright:\n Copyright \u00a9 1994, 1997-2000, 2002, 2008, 2010, 2014\n The NetBSD Foundation, Inc.\n Copyright \u00a9 2013 John-Mark Gurney <jmg at FreeBSD.org>\n All rights reserved.\n .\n Some code was contributed to The NetBSD Foundation by Allen Briggs.\n .\n Some code was contributed to The NetBSD Foundation by Luke Mewburn.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,\n NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Julio M. Merino Vidal, developed as part of Google's Summer of Code\n 2005 program.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Christos Zoulas.\n .\n Some code is derived from software contributed to The NetBSD Foundation\n by Jukka Ruohonen.\nLicense: BSD-2-clause-NetBSD\n\nFiles:\n include/bsd/sys/endian.h\n man/byteorder.3bsd\n man/closefrom.3bsd\n man/expand_number.3bsd\n man/flopen.3bsd\n man/getpeereid.3bsd\n man/pidfile.3bsd\n src/expand_number.c\n src/pidfile.c\n src/reallocf.c\n src/timeconv.c\nCopyright:\n Copyright \u00a9 1998, M. Warner Losh <imp at freebsd.org>\n All rights reserved.\n .\n Copyright \u00a9 2001 Dima Dorfman.\n All rights reserved.\n .\n Copyright \u00a9 2001 FreeBSD Inc.\n All rights reserved.\n .\n Copyright \u00a9 2002 Thomas Moestl <tmm at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2002 Mike Barcroft <mike at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2005 Colin Percival\n All rights reserved.\n .\n Copyright \u00a9 2007 Eric Anderson <anderson at FreeBSD.org>\n Copyright \u00a9 2007 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2007 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\n .\n Copyright \u00a9 2009 Advanced Computing Technologies LLC\n Written by: John H. Baldwin <jhb at FreeBSD.org>\n All rights reserved.\n .\n Copyright \u00a9 2011 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-2-clause\n\nFiles:\n src/flopen.c\nCopyright:\n Copyright \u00a9 2007-2009 Dag-Erling Co\u00efdan Sm\u00f8rgrav\n All rights reserved.\nLicense: BSD-2-clause-verbatim\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer\n in this position and unchanged.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/bsd/sys/tree.h\n man/fparseln.3bsd\n man/tree.3bsd\n src/fparseln.c\nCopyright:\n Copyright \u00a9 1997 Christos Zoulas.\n All rights reserved.\n .\n Copyright \u00a9 2002 Niels Provos <provos at citi.umich.edu>\n All rights reserved.\nLicense: BSD-2-clause-author\n\nFiles:\n include/bsd/readpassphrase.h\n man/readpassphrase.3bsd\n man/strlcpy.3bsd\n man/strtonum.3bsd\n src/arc4random.c\n src/arc4random_linux.h\n src/arc4random_uniform.c\n src/arc4random_unix.h\n src/arc4random_win.h\n src/closefrom.c\n src/freezero.c\n src/getentropy_aix.c\n src/getentropy_bsd.c\n src/getentropy_hpux.c\n src/getentropy_hurd.c\n src/getentropy_linux.c\n src/getentropy_osx.c\n src/getentropy_solaris.c\n src/getentropy_win.c\n src/readpassphrase.c\n src/reallocarray.c\n src/recallocarray.c\n src/strlcat.c\n src/strlcpy.c\n test/explicit_bzero.c\n test/strtonum.c\nCopyright:\n Copyright \u00a9 2004 Ted Unangst and Todd Miller\n All rights reserved.\n .\n Copyright \u00a9 1996 David Mazieres <dm at uun.org>\n Copyright \u00a9 1998, 2000-2002, 2004-2005, 2007, 2010, 2012-2015\n Todd C. Miller <Todd.Miller at courtesan.com>\n Copyright \u00a9 2004 Ted Unangst\n Copyright \u00a9 2004 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2008 Damien Miller <djm at openbsd.org>\n Copyright \u00a9 2008, 2010-2011, 2016-2017 Otto Moerbeek <otto at drijf.net>\n Copyright \u00a9 2013 Markus Friedl <markus at openbsd.org>\n Copyright \u00a9 2014 Bob Beck <beck at obtuse.com>\n Copyright \u00a9 2014 Brent Cook <bcook at openbsd.org>\n Copyright \u00a9 2014 Pawel Jakub Dawidek <pjd at FreeBSD.org>\n Copyright \u00a9 2014 Theo de Raadt <deraadt at openbsd.org>\n Copyright \u00a9 2014 Google Inc.\n Copyright \u00a9 2015 Michael Felt <aixtools at gmail.com>\n Copyright \u00a9 2015, 2022 Guillem Jover <guillem at hadrons.org>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n src/inet_net_pton.c\nCopyright:\n Copyright \u00a9 1996 by Internet Software Consortium.\nLicense: ISC-Original\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles:\n src/setproctitle.c\nCopyright:\n Copyright \u00a9 2010 William Ahern\n Copyright \u00a9 2012 Guillem Jover <guillem at hadrons.org>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to permit\n persons to whom the Software is furnished to do so, subject to the\n following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles:\n src/explicit_bzero.c\n src/chacha_private.h\nCopyright:\n None\nLicense: public-domain\n Public domain.\n\nFiles:\n man/mdX.3bsd\nCopyright:\n None\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nLicense: BSD-3-clause-Regents\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, is permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause-author\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
},
{
- "alg": "SHA-256",
- "content": "bb31cc8b40f962a85b2cec970f7f79cc704a1ae4bad24257a822055404b2c60b"
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
}
],
"purl": "pkg:deb/debian/libbsd0 at 0.11.7-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
@@ -3286,6 +9418,21 @@
"content": "54149da3f44b22d523b26b692033b84503d822cc5122fed606ea69cc83ca5aeb"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-variant",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: bzip2\nSource: http://www.bzip.org/\n\nFiles: *\nCopyright: 1996-2010 Julian R Seward <jseward at bzip.org>\nLicense: BSD-variant\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/*\nCopyright: 2018 Nicolas Boulenguez <nicolas.boulenguez at free.fr>\n\t 2012-2015 Santiago Ruano Rinc\u00f3n <santiago at debian.org>\n 2014 Canonical Ltd.\n 2004-2011 Anibal Monsalve Salazar <anibal at debian.org>\n 1999-2002 Philippe Troin <phil at fifi.org>\n 1997-1999 Anthony Fok <foka at debian.org>\nLicense: GPL-2\n The full text of the GNU General Public License version 2\n can be found in /usr/share/common-licenses/GPL-2.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libbz2-1.0 at 1.0.8-5+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3302,6 +9449,21 @@
"content": "687687d1ace90565cc451b1be527914246123968b747c823e276cd7f8b57ba3d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-variant",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: bzip2\nSource: http://www.bzip.org/\n\nFiles: *\nCopyright: 1996-2010 Julian R Seward <jseward at bzip.org>\nLicense: BSD-variant\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/*\nCopyright: 2018 Nicolas Boulenguez <nicolas.boulenguez at free.fr>\n\t 2012-2015 Santiago Ruano Rinc\u00f3n <santiago at debian.org>\n 2014 Canonical Ltd.\n 2004-2011 Anibal Monsalve Salazar <anibal at debian.org>\n 1999-2002 Philippe Troin <phil at fifi.org>\n 1997-1999 Anthony Fok <foka at debian.org>\nLicense: GPL-2\n The full text of the GNU General Public License version 2\n can be found in /usr/share/common-licenses/GPL-2.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libc-bin at 2.36-9+deb12u7?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3318,6 +9480,21 @@
"content": "eba944bd99c2f5142baf573e6294a70f00758083bc3c2dca4c9e445943a3f8e6"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-variant",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: bzip2\nSource: http://www.bzip.org/\n\nFiles: *\nCopyright: 1996-2010 Julian R Seward <jseward at bzip.org>\nLicense: BSD-variant\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/*\nCopyright: 2018 Nicolas Boulenguez <nicolas.boulenguez at free.fr>\n\t 2012-2015 Santiago Ruano Rinc\u00f3n <santiago at debian.org>\n 2014 Canonical Ltd.\n 2004-2011 Anibal Monsalve Salazar <anibal at debian.org>\n 1999-2002 Philippe Troin <phil at fifi.org>\n 1997-1999 Anthony Fok <foka at debian.org>\nLicense: GPL-2\n The full text of the GNU General Public License version 2\n can be found in /usr/share/common-licenses/GPL-2.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libc6 at 2.36-9+deb12u7?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3334,6 +9511,23 @@
"content": "b4b54769c77e4a71c8b33aee4d600ba28a9994a1c6f60d55d4ebe7fc44882e07"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcap-ng0 at 0.8.3-1+b3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3350,6 +9544,24 @@
"content": "b36fefe9867f9e59b540f952e957a72ebdc241e997179d826da19a9511ade4a3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libcap\nUpstream-Contact: Andrew G. Morgan <morgan at kernel.org>\nSource: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/\n\nFiles: *\nCopyright: 1997-2016 Andrew G. Morgan <morgan at linux.kernel.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/cap_text.c\nCopyright: 1997-2008 Andrew G. Morgan <morgan at linux.kernel.org>\n 1997 Andrew Main <zefram at dcs.warwick.ac.uk>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/capability.h\nCopyright: 1997-2008 Andrew G. Morgan <morgan at kernel.org>\n 1997 Aleph One\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/securebits.h\nCopyright: 2010 Serge Hallyn <serue at us.ibm.com>\nLicense: BSD-3-clause or GPL-2\n\nFiles: progs/old/sucap.c\nCopyright: 1998 Finn Arne Gangstad <finnag at guardian.no>\nLicense: BSD-3-clause or GPL-2\n\nFiles: contrib/*\nCopyright: 2006, Matt Kern <matt.kern at undue.org>\n 2008, Andrew G. Morgan <morgan at linux.kernel.org>\n\t 2008, Chris Friedhoff <chris at friedhoff.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright: 2014, Daniel Baumann <mail at daniel-baumann.ch>\n 2014-2022, Christian Kastner <ckk at debian.org>\nLicense: BSD-3-clause or GPL-2+\n\nFiles: debian/manpages/*\nCopyright: 1997-2014 Andrew G. Morgan <morgan at linux.kernel.org>\n 2011 Scott Schaefer <saschaefer at neurodiverse.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/patches/*\nCopyright: 2011, Andrew Straw <strawman at astraw.com>\n 2011, Zhi Li <lizhi1215 at gmail.com>\n 2014-2016, Christian Kastner <ckk at debian.org>\n 2015, Helmut Grohne <helmut at subdivi.de>\nLicense: BSD-3-clause or GPL-2+\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms of libcap, with\n or without modification, are permitted provided that the following\n conditions are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libcap\nUpstream-Contact: Andrew G. Morgan <morgan at kernel.org>\nSource: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/\n\nFiles: *\nCopyright: 1997-2016 Andrew G. Morgan <morgan at linux.kernel.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/cap_text.c\nCopyright: 1997-2008 Andrew G. Morgan <morgan at linux.kernel.org>\n 1997 Andrew Main <zefram at dcs.warwick.ac.uk>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/capability.h\nCopyright: 1997-2008 Andrew G. Morgan <morgan at kernel.org>\n 1997 Aleph One\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/securebits.h\nCopyright: 2010 Serge Hallyn <serue at us.ibm.com>\nLicense: BSD-3-clause or GPL-2\n\nFiles: progs/old/sucap.c\nCopyright: 1998 Finn Arne Gangstad <finnag at guardian.no>\nLicense: BSD-3-clause or GPL-2\n\nFiles: contrib/*\nCopyright: 2006, Matt Kern <matt.kern at undue.org>\n 2008, Andrew G. Morgan <morgan at linux.kernel.org>\n\t 2008, Chris Friedhoff <chris at friedhoff.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright: 2014, Daniel Baumann <mail at daniel-baumann.ch>\n 2014-2022, Christian Kastner <ckk at debian.org>\nLicense: BSD-3-clause or GPL-2+\n\nFiles: debian/manpages/*\nCopyright: 1997-2014 Andrew G. Morgan <morgan at linux.kernel.org>\n 2011 Scott Schaefer <saschaefer at neurodiverse.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/patches/*\nCopyright: 2011, Andrew Straw <strawman at astraw.com>\n 2011, Zhi Li <lizhi1215 at gmail.com>\n 2014-2016, Christian Kastner <ckk at debian.org>\n 2015, Helmut Grohne <helmut at subdivi.de>\nLicense: BSD-3-clause or GPL-2+\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms of libcap, with\n or without modification, are permitted provided that the following\n conditions are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcap2 at 1:2.66-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3366,6 +9578,24 @@
"content": "72da6038877cc5c7d71538a547e22d03346b1ef99a35169d7ff3500f5675df1e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libcap\nUpstream-Contact: Andrew G. Morgan <morgan at kernel.org>\nSource: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/\n\nFiles: *\nCopyright: 1997-2016 Andrew G. Morgan <morgan at linux.kernel.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/cap_text.c\nCopyright: 1997-2008 Andrew G. Morgan <morgan at linux.kernel.org>\n 1997 Andrew Main <zefram at dcs.warwick.ac.uk>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/capability.h\nCopyright: 1997-2008 Andrew G. Morgan <morgan at kernel.org>\n 1997 Aleph One\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/securebits.h\nCopyright: 2010 Serge Hallyn <serue at us.ibm.com>\nLicense: BSD-3-clause or GPL-2\n\nFiles: progs/old/sucap.c\nCopyright: 1998 Finn Arne Gangstad <finnag at guardian.no>\nLicense: BSD-3-clause or GPL-2\n\nFiles: contrib/*\nCopyright: 2006, Matt Kern <matt.kern at undue.org>\n 2008, Andrew G. Morgan <morgan at linux.kernel.org>\n\t 2008, Chris Friedhoff <chris at friedhoff.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright: 2014, Daniel Baumann <mail at daniel-baumann.ch>\n 2014-2022, Christian Kastner <ckk at debian.org>\nLicense: BSD-3-clause or GPL-2+\n\nFiles: debian/manpages/*\nCopyright: 1997-2014 Andrew G. Morgan <morgan at linux.kernel.org>\n 2011 Scott Schaefer <saschaefer at neurodiverse.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/patches/*\nCopyright: 2011, Andrew Straw <strawman at astraw.com>\n 2011, Zhi Li <lizhi1215 at gmail.com>\n 2014-2016, Christian Kastner <ckk at debian.org>\n 2015, Helmut Grohne <helmut at subdivi.de>\nLicense: BSD-3-clause or GPL-2+\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms of libcap, with\n or without modification, are permitted provided that the following\n conditions are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libcap\nUpstream-Contact: Andrew G. Morgan <morgan at kernel.org>\nSource: https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/\n\nFiles: *\nCopyright: 1997-2016 Andrew G. Morgan <morgan at linux.kernel.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/cap_text.c\nCopyright: 1997-2008 Andrew G. Morgan <morgan at linux.kernel.org>\n 1997 Andrew Main <zefram at dcs.warwick.ac.uk>\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/capability.h\nCopyright: 1997-2008 Andrew G. Morgan <morgan at kernel.org>\n 1997 Aleph One\nLicense: BSD-3-clause or GPL-2\n\nFiles: libcap/include/sys/securebits.h\nCopyright: 2010 Serge Hallyn <serue at us.ibm.com>\nLicense: BSD-3-clause or GPL-2\n\nFiles: progs/old/sucap.c\nCopyright: 1998 Finn Arne Gangstad <finnag at guardian.no>\nLicense: BSD-3-clause or GPL-2\n\nFiles: contrib/*\nCopyright: 2006, Matt Kern <matt.kern at undue.org>\n 2008, Andrew G. Morgan <morgan at linux.kernel.org>\n\t 2008, Chris Friedhoff <chris at friedhoff.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright: 2014, Daniel Baumann <mail at daniel-baumann.ch>\n 2014-2022, Christian Kastner <ckk at debian.org>\nLicense: BSD-3-clause or GPL-2+\n\nFiles: debian/manpages/*\nCopyright: 1997-2014 Andrew G. Morgan <morgan at linux.kernel.org>\n 2011 Scott Schaefer <saschaefer at neurodiverse.org>\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/patches/*\nCopyright: 2011, Andrew Straw <strawman at astraw.com>\n 2011, Zhi Li <lizhi1215 at gmail.com>\n 2014-2016, Christian Kastner <ckk at debian.org>\n 2015, Helmut Grohne <helmut at subdivi.de>\nLicense: BSD-3-clause or GPL-2+\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms of libcap, with\n or without modification, are permitted provided that the following\n conditions are met:\n .\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n .\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, version 2 of the License.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n\nLicense: GPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-2 file.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcap2-bin at 1:2.66-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3382,6 +9612,59 @@
"content": "8010e4285276bb344c05ae780deae2fffb45e237116c3a78481365c5954125ec"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcom-err2 at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3398,6 +9681,59 @@
"content": "f5f60a5cdfd4e4eaa9438ade5078a57741a7a78d659fcb0c701204f523e8bd29"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcrypt1 at 1:4.4.33-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3414,6 +9750,46 @@
"content": "b9a607c219be5ef04bc0fcfaec3752d9a1ba07df8d3bb2aed9bf348f90d1b6cc"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH OpenSSL exception"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.1-or-later WITH OpenSSL exception"
+ }
+ },
+ {
+ "license": {
+ "name": "CC0 OR Apache-2.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Contact: Milan Broz <mbroz at redhat.com>\nSource: https://gitlab.com/cryptsetup/cryptsetup\nUpstream-Name: cryptsetup\n\nFiles: *\nCopyright: \u00a9 2004 Christophe Saout <christophe at saout.de>\n \u00a9 2004-2008 Clemens Fruhwirth <clemens at endorphin.org>\n \u00a9 2008-2023 Red Hat, Inc.\n \u00a9 2008-2023 Milan Broz <gmazyland at gmail.com>\nLicense: GPL-2+ with OpenSSL exception\n\nFiles: debian/*\nCopyright: \u00a9 2004-2005 Wesley W. Terpstra <terpstra at debian.org>\n \u00a9 2005-2006 Michael Gebetsroither <michael.geb at gmx.at>\n \u00a9 2006-2008 David H\u00e4rdeman <david at hardeman.nu>\n \u00a9 2005-2015 Jonas Meurer <jonas at freesources.org>\n \u00a9 2016-2023 Guilhem Moulin <guilhem at debian.org>\nLicense: GPL-2+\n\nFiles: debian/scripts/suspend/cryptsetup-suspend.c\nCopyright: \u00a9 2018 Guilhem Moulin <guilhem at debian.org>\n \u00a9 2018-2020 Jonas Meurer <jonas at freesources.org>\nLicense: GPL-3+\n\nFiles: debian/scripts/suspend/cryptsetup-suspend-wrapper\nCopyright: \u00a9 2019-2020 Tim <tim at systemli.org>\n \u00a9 2019-2020 Jonas Meurer <jonas at freesources.org>\n \u00a9 2020-2022 Guilhem Moulin <guilhem at debian.org>\nLicense: GPL-3+\n\nFiles: debian/askpass.c debian/scripts/passdev.c\nCopyright: \u00a9 2008 David H\u00e4rdeman <david at hardeman.nu>\nLicense: GPL-2+\n\nFiles: debian/initramfs/cryptroot-unlock\nCopyright: \u00a9 2015-2018 Guilhem Moulin <guilhem at debian.org>\nLicense: GPL-3+\n\nFiles: debian/README.opensc\nCopyright: \u00a9 2008 Benjamin Kiessling <benjaminkiessling at bttec.org>\nLicense: GPL-2+\n\nFiles: debian/scripts/cryptdisks_start\nCopyright: \u00a9 2007 Jon Dowland <jon at alcopop.org>\nLicense: GPL-2+\n\nFiles: debian/scripts/luksformat\nCopyright: \u00a9 2005 Canonical Ltd.\nLicense: GPL-2+\n\nFiles: debian/scripts/decrypt_gnupg-sc debian/README.gnupg-sc debian/initramfs/hooks/cryptgnupg-sc debian/initramfs/scripts/local-bottom/cryptgnupg-sc\nCopyright: \u00a9 2005-2015 Jonas Meurer <jonas at freesources.org>\n \u00a9 2016-2018 Guilhem Moulin <guilhem at debian.org>\n \u00a9 2009,2014 Peter Lebbing <peter at digitalbrains.com>\n \u00a9 2018 Erik Nellessen\nLicense: GPL-2+\n\nFiles: debian/tests/*\nCopyright: \u00a9 2021-2022 Guilhem Moulin <guilhem at debian.org>\nLicense: GPL-3+\n\nFiles: docs/examples/* tests/all-symbols-test.c\nCopyright: \u00a9 2011-2023 Red Hat, Inc.\nLicense: LGPL-2.1+\n\nFiles: lib/bitlk/*\nCopyright: \u00a9 2019-2023 Red Hat, Inc.\n \u00a9 2019-2023 Milan Broz <gmazyland at gmail.com>\n \u00a9 2019-2023 Vojtech Trefny\nLicense: LGPL-2.1+\n\nFiles: tokens/ssh/*\nCopyright: \u00a9 2016-2023 Milan Broz <gmazyland at gmail.com>\n \u00a9 2020-2023 Vojtech Trefny\nLicense: LGPL-2.1+\n\nFiles: tokens/ssh/cryptsetup-ssh.c\nCopyright: \u00a9 2016-2023 Milan Broz <gmazyland at gmail.com>\n \u00a9 2021-2023 Vojtech Trefny\nLicense: GPL-2+\n\nFiles: lib/crypto_backend/* lib/integrity/* lib/loopaes/* lib/tcrypt/* lib/verity/*\nCopyright: \u00a9 2009-2023 Red Hat, Inc.\n \u00a9 2010-2023 Milan Broz <gmazyland at gmail.com>\nLicense: LGPL-2.1+\n\nFiles: lib/crypto_backend/base64.c\nCopyright: \u00a9 2010 Lennart Poettering\n \u00a9 2021-2023 Milan Broz <gmazyland at gmail.com>\nLicense: LGPL-2.1+\n\nFiles: lib/crypto_backend/utf8.c\nCopyright: \u00a9 2010 Lennart Poettering\n \u00a9 2021-2023 Vojtech Trefny\n \u00a9 1999 Tom Tromey\n \u00a9 2000 Red Hat, Inc.\nLicense: GPL-2+\n\nFiles: lib/crypto_backend/crypto_openssl.c\nCopyright: \u00a9 2009-2023 Red Hat, Inc.\n \u00a9 2010-2023 Milan Broz <gmazyland at gmail.com>\nLicense: LGPL-2.1+ with OpenSSL exception\n\nFiles: lib/fvault2/fvault2.c lib/fvault2/fvault2.h\nCopyright: \u00a9 2021-2022 Pavel Tobias\nLicense: LGPL-2.1+ with OpenSSL exception\n\nFiles: lib/keyslot_context.c lib/keyslot_context.h\nCopyright: \u00a9 2022-2023 Red Hat, Inc.\n \u00a9 2022-2023 Ondrej Kozina <okozina at redhat.com>\nLicense: GPL-2+\n\nFiles: lib/crypto_backend/argon2/*\nCopyright: \u00a9 2015 Daniel Dinu\n \u00a9 2015 Dmitry Khovratovich\n \u00a9 2015 Jean-Philippe Aumasson\n \u00a9 2015 Samuel Neves\nLicense: CC0 or Apache-2.0\n\nFiles: lib/crypto_backend/argon2/encoding.c\nCopyright: \u00a9 2015 Thomas Pornin <pornin at bolet.org>\nLicense: CC0 or Apache-2.0\n\nFiles: lib/crypto_backend/crc32.c\nCopyright: \u00a9 1986 Gary S. Brown\nLicense: public-domain\n Gary S. Brown's license is as follows:\n .\n You may use this program, or code or tables extracted from it, as\n desired without restriction.\n\nFiles: lib/bitops.h\nCopyright: \u00a9 Karel Zak <kzak at redhat.com>\nLicense: public-domain\n Karel Zak's license is as follows:\n .\n No copyright is claimed. This code is in the public domain; do with it\n what you wish.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+ with OpenSSL exception\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n In addition, as a special exception, the copyright holders give\n permission to link the code of portions of this program with the\n OpenSSL library under certain conditions as described in each\n individual source file, and distribute linked combinations including\n the two. You must obey the GNU General Public License in all respects\n for all of the code used other than OpenSSL. If you modify file(s)\n with this exception, you may extend this exception to your version of\n the file(s), but you are not obligated to do so. If you do not wish to\n do so, delete this exception statement from your version. If you\n delete this exception statement from all source files in the program,\n then also delete it here.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3`.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 2.1 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: LGPL-2.1+ with OpenSSL exception\n This program is free software; you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 2.1 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n .\n In addition, as a special exception, the copyright holders give\n permission to link the code of portions of this program with the\n OpenSSL library under certain conditions as described in each\n individual source file, and distribute linked combinations including\n the two. You must obey the GNU Lesser General Public License in all\n respects for all of the code used other than OpenSSL. If you modify\n file(s) with this exception, you may extend this exception to your\n version of the file(s), but you are not obligated to do so. If you do\n not wish to do so, delete this exception statement from your version.\n If you delete this exception statement from all source files in the\n program, then also delete it here.\n\nLicense: CC0\n You may use this work under the terms of a Creative Commons CC0 1.0\n License/Waiver.\n .\n On Debian systems, the complete text of the Creative Commons CC0 1.0\n Universal license can be found in `/usr/share/common-licenses/CC0-1.0'.\n\nLicense: Apache-2.0\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n https://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n .\n On Debian systems, the complete text of the Apache version 2.0 license\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libcryptsetup12 at 2:2.6.1-4~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3430,6 +9806,89 @@
"content": "7dc5127b8dd0da80e992ba594954c005ae4359d839a24eb65d0d8129b5235c84"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Ms-PL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT-old",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "TCL-like",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-fjord",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-1.0 OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Clint Adams <schizo at debian.org>.\nSource: It was downloaded from now non-existing\n http://www.oracle.com/technology/software/products/berkeley-db/db/index.html\n 3rd party download area available at https://github.com/berkeleydb/libdb/releases\n .\n The following is the license that applies to this copy of the Berkeley DB\n software. For a license to use the Berkeley DB software under conditions\n other than those described here, or to purchase support for this software,\n please contact Oracle at berkeleydb-info_us at oracle.com.\n .\n Eliminate prebuilt binaries that need a Visual Studio plugin to build from source.\n Eliminate a shell script that has a non-free license.\nFiles-Excluded: docs/csharp/fti\n test/xa/src2/run.sh\nUpstream-Contact: berkeleydb-info_us at oracle.com\n\nFiles: *\nCopyright:\n Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995\n The Regents of the University of California. All rights reserved.\n Copyright (c) 1995, 1996\n The President and Fellows of Harvard University. All rights reserved.\n Copyright (c) 1990-1996\n Margo Seltzer. All rights reserved.\n Copyright (c) 1990, 1993, 1994, 1995, 1996\n Keith Bostic. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n\nLicense: Sleepycat\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Redistributions in any form must be accompanied by information on\n * how to obtain complete source code for the DB software and any\n * accompanying software that uses the DB software. The source code\n * must either be included in the distribution or be available for no\n * more than the cost of distribution plus a nominal fee, and must be\n * freely redistributable under reasonable conditions. For an\n * executable file, complete source code means the source code for all\n * modules it contains. It does not include source code for modules or\n * files that typically accompany the major components of the operating\n * system on which the executable file runs.\n *\n * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: lang/java/src/com/sleepycat/asm/*\nComment: ASM: a very small and fast Java bytecode manipulation framework\nCopyright: (c) 2000-2005 INRIA, France Telecom\n All rights reserved.\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the University nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n * SUCH DAMAGE.\n\nFiles: docs/csharp/*\nCopyright: 2006-2009, Eric Woodruff, All rights reserved\nLicense: Ms-PL\n Microsoft Public License (Ms-PL)\n .\n This license governs use of the accompanying software. If you use the\n software, you accept this license. If you do not accept the license,\n do not use the software.\n .\n 1. Definitions\n .\n The terms \"reproduce,\" \"reproduction,\" \"derivative works,\" and\n \"distribution\" have the same meaning here as under U.S. copyright\n law.\n .\n A \"contribution\" is the original software, or any additions or\n changes to the software.\n .\n A \"contributor\" is any person that distributes its contribution\n under this license.\n .\n \"Licensed patents\" are a contributor's patent claims that read\n directly on its contribution.\n .\n 2. Grant of Rights\n .\n (A) Copyright Grant- Subject to the terms of this license,\n including the license conditions and limitations in section 3,\n each contributor grants you a non-exclusive, worldwide,\n royalty-free copyright license to reproduce its contribution,\n prepare derivative works of its contribution, and distribute its\n contribution or any derivative works that you create.\n .\n (B) Patent Grant- Subject to the terms of this license, including\n the license conditions and limitations in section 3, each\n contributor grants you a non-exclusive, worldwide, royalty-free\n license under its licensed patents to make, have made, use, sell,\n offer for sale, import, and/or otherwise dispose of its\n contribution in the software or derivative works of the\n contribution in the software.\n .\n 3. Conditions and Limitations\n .\n (A) No Trademark License- This license does not grant you rights\n to use any contributors' name, logo, or trademarks.\n .\n (B) If you bring a patent claim against any contributor over\n patents that you claim are infringed by the software, your patent\n license from such contributor to the software ends automatically.\n .\n (C) If you distribute any portion of the software, you must retain\n all copyright, patent, trademark, and attribution notices that are\n present in the software.\n .\n (D) If you distribute any portion of the software in source code\n form, you may do so only under this license by including a\n complete copy of this license with your distribution. If you\n distribute any portion of the software in compiled or object code\n form, you may only do so under a license that complies with this\n license.\n .\n (E) The software is licensed \"as-is.\" You bear the risk of using\n it. The contributors give no express warranties, guarantees, or\n conditions. You may have additional consumer rights under your\n local laws which this license cannot change. To the extent\n permitted under your local laws, the contributors exclude the\n implied warranties of merchantability, fitness for a particular\n purpose and non-infringement.\n\nFiles: lang/perl/*\nCopyright: (c) 1995-2011 Paul Marquess. All rights reserved.\nComment: This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\nLicense: GPL or Artistic\n See `/usr/share/common-licenses/GPL' and `/usr/share/common-licenses/Artistic'.\n\nFiles: *install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nFiles: lang/sql/jdbc/install-sh\n lang/sql/sqlite/install-sh\nCopyright: 1991 by the Massachusetts Institute of Technology\nLicense: MIT-old\n Permission to use, copy, modify, distribute, and sell this software and its\n documentation for any purpose is hereby granted without fee, provided that\n the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation, and that the name of M.I.T. not be used in advertising or\n publicity pertaining to distribution of the software without specific,\n written prior permission. M.I.T. makes no representations about the\n suitability of this software for any purpose. It is provided \"as is\"\n without express or implied warranty.\n\nFiles: lang/sql/odbc/*\nCopyright: (c) 2001-2011 Christian Werner <chw at ch-werner.de>\n OS/2 Port Copyright (c) 2004 Lorne R. Sunley <lsunley at mb.sympatico.ca>\nLicense: TCL-like\n This software is copyrighted by Christian Werner <chw at ch-werner.de>\n and other authors. The following terms apply to all files associated\n with the software unless explicitly disclaimed in individual files.\n .\n The authors hereby grant permission to use, copy, modify, distribute,\n and license this software and its documentation for any purpose, provided\n that existing copyright notices are retained in all copies and that this\n notice is included verbatim in any distributions. No written agreement,\n license, or royalty fee is required for any of the authorized uses.\n Modifications to this software may be copyrighted by their authors\n and need not follow the licensing terms described here, provided that\n the new terms are clearly indicated on the first page of each file where\n they apply.\n .\n IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY\n FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES\n ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY\n DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE\n IS PROVIDED ON AN \"AS IS\" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE\n NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR\n MODIFICATIONS.\n\nFiles: lang/sql/odbc/SQLiteODBCInstaller.c\nCopyright: (c) 2006, fjord-e-design GmbH\n All rights reserved.\nLicense: BSD-3-clause-fjord\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the fjord-e-design nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: lang/sql/odbc/debian/*\nCopyright: (C) 2006, Sam Clegg <samo at debian.org>\nLicense: GPL-3\n See `/usr/share/common-licenses/GPL-3'.\n\nFiles: test/c/cutest/gen_tester.sh\nCopyright: (c) 2003 Asim Jalis\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software in\n a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n .\n 2. Altered source versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n .\n 3. This notice may not be removed or altered from any source\n distribution.\n\nFiles: src/crypto/mersenne/mt19937db.c\nCopyright: (C) 1997, 1999 Makoto Matsumoto and Takuji Nishimura.\nComment: License changed according to\n https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20130506/1016593.html\nLicense: Artistic or BSD-3-clause\n This library is free software under the Artistic license:\n see the file COPYING distributed together with this code.\n For the verification of the code, its output sequence file\n mt19937int.out is attached (2001/4/2)\n .\n See `/usr/share/common-licenses/Artistic'.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n 3. The names of its contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: debian/rules\nCopyright: (C) 2011 Ond\u0159ej Sur\u00fd\nComment: Published under the GNU GPL license\n Partially based on previous work by Clint Adams\nLicense: GPL\n See `/usr/share/common-licenses/GPL'.\n\nFiles: debian/manpages/db5.3_codegen.1\nCopyright: 2010 by Thorsten Glaser <tg at debian.org>\n 1996,2008 Oracle. All rights reserved.\nLicense: Sleepycat and BSD-3-clause\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libdb5.3 at 5.3.28+dfsg2-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3446,6 +9905,18 @@
"content": "7d2b2b700bae0ba67a13655fabba6a98da3f6ce7dee43d1ee0ac433b7ca1d947"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libdebconfclient0 at 0.270?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3462,6 +9933,28 @@
"content": "aaa78ca236055fedccf637eacf7bda02bf1980b2db668dccd202b04d0d2cfe04"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libdevmapper1.02.1 at 2:1.02.185-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3478,6 +9971,13 @@
"content": "1cf14abf2716d3279db12d0657a5737cf70074a1e71d3bdf73206625e3c89ce6"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libedit2 at 3.1-20221030-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3494,6 +9994,44 @@
"content": "619add379c606b3ac6c1a175853b918e6939598a83d8ebadf3bdfd50d10b3c8c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Kurt Roeckx <kurt at roeckx.be>.\nUpstream-Name: elfutils\nUpstream-Contact: elfutils-devel at sourceware.org\nSource: https://sourceware.org/elfutils/ftp/\n\nFiles: *\nCopyright: (C) 1996-2019 Red Hat, Inc.\n (C) 2022 Mark J. Wielaard <mark at klomp.org>\n (C) 2015, 2016 Oracle, Inc.\n (C) 2017 The Qt Company\n (C) 2018, 2021 Facebook, Inc.\n (C) 2021 Runsafe Security, Inc.\n (C) H.J. Lu <hjl.tools at gmail.com>, 2015.\n (C) 2020 Tom Tromey\nComment: Written by:\n Ulrich Drepper <drepper at redhat.com>\n Jeff Johnson <jbj at redhat.com>\n Alexander Larsson\n Jakub Jelinek <jakub at redhat.com>\n Roland McGrath <roland at redhat.com>.\n See more in the AUTHORS file.\nLicense: GPL-3+\n\nFiles: backends/*\n config/*\n debuginfod/*\n lib*\n version.h\n debian/patches/mips_cfi.patch\nCopyright: (C) 1996-2019 Red Hat, Inc.\n (C) 2021, 2022 Mark J. Wielaard <mark at klomp.org>\n (C) 2015 Oracle, Inc.\n (C) 2016, 2017 The Qt Company Ltd.\n (C) 2021 Google, Inc.\n (C) 2012 Tilera Corporation\n (C) 2019 Hangzhou C-SKY Microsystems co.,ltd.\n (C) H.J. Lu <hjl.tools at gmail.com>, 2015.\n (c) 2021 Dmitry V. Levin <ldv at altlinux.org>\n (C) 2018 Sifive, Inc.\n (C) 2018 Kurt Roeckx, Inc.\nComment: Most of the libraries (lib, libelf, libebl, libdw, libdwfl) have\n the following license:\nLicense: LGPL-3+ or GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of either\n .\n * the GNU Lesser General Public License as published by the Free\n Software Foundation; either version 3 of the License, or (at\n your option) any later version\n .\n or\n .\n * the GNU General Public License as published by the Free\n Software Foundation; either version 2 of the License, or (at\n your option) any later version\n .\n or both in parallel, as here.\n .\n elfutils is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received copies of the GNU General Public License and\n the GNU Lesser General Public License along with this program. If\n not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in\n `/usr/share/common-licenses/GPL-2' and the complete text of the GNU\n Lesser General Public License version 3 can be found in\n `/usr/share/common-licenses/LGPL-3'.\n\nFiles: lib/stdatomic-fbsd.h\nCopyright: (c) 2011 Ed Schouten <ed at FreeBSD.org>\n David Chisnall <theraven at FreeBSD.org>\n\t\t All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: doc/readelf.1\nCopyright: (c) 1991-2018 Free Software Foundation, Inc.\n (c) 2019 Red Hat Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no\n Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU\n Free Documentation License version 1.3 can be found in\n `/usr/share/common-licenses/GFDL-1.3'\n\nFiles: libelf/dl-hash.h\n libelf/elf.h\nCopyright: (C) 1995-2022 Free Software Foundation, Inc.\nComment: This file is part of the GNU C Library.\nLicense: LGPL-2.1+\n The GNU C Library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n The GNU C Library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with the GNU C Library; if not, see\n <https://www.gnu.org/licenses/>.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU\n Lesser General Public License version 2.1 can be found in\n `/usr/share/common-licenses/LGPL-2.1'.\n\nFiles: libcpu/i386_parse.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n\t Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: debian/po/de.po\nCopyright: (C) 2021, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-3+\n\nFiles: debian/po/es.po\nCopyright: (C) 2022, Camale\u00f3n <noelamac at gmail.com>\nLicense: GPL-3+\n\nFiles: debian/po/fr.po\nCopyright: (C) 2021, Jean-Pierre Giraud <jean-pierregiraud at neuf.fr>\nLicense: GPL-3+\n\nFiles: debian/po/nl.po\nCopyright: (C) 2021, Frans Spiesschaert <Frans.Spiesschaert at yucom.be>\nLicense: GPL-3+\n\nFiles: debian/po/pt_BR.po\nCopyright: (C) 2021, Sergio Durigan Junior <sergiodj at debian.org>\nLicense: GPL-3+\n\nFiles: debian/po/pt.po\nCopyright: (C) 2021, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n elfutils is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\nComment: GPL-3+\n On Debian GNU/Linux systems, the complete text of the GNU\n General Public License version 3 can be found in\n `/usr/share/common-licenses/GPL-3'\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Kurt Roeckx <kurt at roeckx.be>.\nUpstream-Name: elfutils\nUpstream-Contact: elfutils-devel at sourceware.org\nSource: https://sourceware.org/elfutils/ftp/\n\nFiles: *\nCopyright: (C) 1996-2019 Red Hat, Inc.\n (C) 2022 Mark J. Wielaard <mark at klomp.org>\n (C) 2015, 2016 Oracle, Inc.\n (C) 2017 The Qt Company\n (C) 2018, 2021 Facebook, Inc.\n (C) 2021 Runsafe Security, Inc.\n (C) H.J. Lu <hjl.tools at gmail.com>, 2015.\n (C) 2020 Tom Tromey\nComment: Written by:\n Ulrich Drepper <drepper at redhat.com>\n Jeff Johnson <jbj at redhat.com>\n Alexander Larsson\n Jakub Jelinek <jakub at redhat.com>\n Roland McGrath <roland at redhat.com>.\n See more in the AUTHORS file.\nLicense: GPL-3+\n\nFiles: backends/*\n config/*\n debuginfod/*\n lib*\n version.h\n debian/patches/mips_cfi.patch\nCopyright: (C) 1996-2019 Red Hat, Inc.\n (C) 2021, 2022 Mark J. Wielaard <mark at klomp.org>\n (C) 2015 Oracle, Inc.\n (C) 2016, 2017 The Qt Company Ltd.\n (C) 2021 Google, Inc.\n (C) 2012 Tilera Corporation\n (C) 2019 Hangzhou C-SKY Microsystems co.,ltd.\n (C) H.J. Lu <hjl.tools at gmail.com>, 2015.\n (c) 2021 Dmitry V. Levin <ldv at altlinux.org>\n (C) 2018 Sifive, Inc.\n (C) 2018 Kurt Roeckx, Inc.\nComment: Most of the libraries (lib, libelf, libebl, libdw, libdwfl) have\n the following license:\nLicense: LGPL-3+ or GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of either\n .\n * the GNU Lesser General Public License as published by the Free\n Software Foundation; either version 3 of the License, or (at\n your option) any later version\n .\n or\n .\n * the GNU General Public License as published by the Free\n Software Foundation; either version 2 of the License, or (at\n your option) any later version\n .\n or both in parallel, as here.\n .\n elfutils is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received copies of the GNU General Public License and\n the GNU Lesser General Public License along with this program. If\n not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in\n `/usr/share/common-licenses/GPL-2' and the complete text of the GNU\n Lesser General Public License version 3 can be found in\n `/usr/share/common-licenses/LGPL-3'.\n\nFiles: lib/stdatomic-fbsd.h\nCopyright: (c) 2011 Ed Schouten <ed at FreeBSD.org>\n David Chisnall <theraven at FreeBSD.org>\n\t\t All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: doc/readelf.1\nCopyright: (c) 1991-2018 Free Software Foundation, Inc.\n (c) 2019 Red Hat Inc.\nLicense: GFDL-NIV-1.3\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.3\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no\n Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU\n Free Documentation License version 1.3 can be found in\n `/usr/share/common-licenses/GFDL-1.3'\n\nFiles: libelf/dl-hash.h\n libelf/elf.h\nCopyright: (C) 1995-2022 Free Software Foundation, Inc.\nComment: This file is part of the GNU C Library.\nLicense: LGPL-2.1+\n The GNU C Library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n The GNU C Library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with the GNU C Library; if not, see\n <https://www.gnu.org/licenses/>.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU\n Lesser General Public License version 2.1 can be found in\n `/usr/share/common-licenses/LGPL-2.1'.\n\nFiles: libcpu/i386_parse.*\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,\n\t Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>. */\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nFiles: debian/po/de.po\nCopyright: (C) 2021, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-3+\n\nFiles: debian/po/es.po\nCopyright: (C) 2022, Camale\u00f3n <noelamac at gmail.com>\nLicense: GPL-3+\n\nFiles: debian/po/fr.po\nCopyright: (C) 2021, Jean-Pierre Giraud <jean-pierregiraud at neuf.fr>\nLicense: GPL-3+\n\nFiles: debian/po/nl.po\nCopyright: (C) 2021, Frans Spiesschaert <Frans.Spiesschaert at yucom.be>\nLicense: GPL-3+\n\nFiles: debian/po/pt_BR.po\nCopyright: (C) 2021, Sergio Durigan Junior <sergiodj at debian.org>\nLicense: GPL-3+\n\nFiles: debian/po/pt.po\nCopyright: (C) 2021, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n elfutils is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\nComment: GPL-3+\n On Debian GNU/Linux systems, the complete text of the GNU\n General Public License version 3 can be found in\n `/usr/share/common-licenses/GPL-3'\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libelf1 at 0.188-2.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3510,6 +10048,59 @@
"content": "e28d141cebb72f1ac1f1d0ea6528b343e41287128db3d4b217ce7790a22352cf"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libext2fs2 at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3526,6 +10117,71 @@
"content": "a4d852a882d62d64561a9311821bc58cbf7de52d23f99da7086e442345ac1ac1"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libfdisk1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3542,6 +10198,49 @@
"content": "6d9f6c25c30efccce6d4bceaa48ea86c329a3432abb360a141f76ac223a4c34a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.1-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthias Klose <doko at debian.org>\nSource: https://github.com/libffi/libffi/releases\nUpstream-Contact:\n Anthony Green <green at redhat.com>\n GCC developers\n See the README and below in the list of copyright holders for a more\n complete list.\n\nFiles: *\nCopyright:\n Copyright (c) 1996-2011 Red Hat, Inc.\n Copyright (C) 1996-2011 Anthony Green\n Copyright (C) 1996-2010 Free Software Foundation, Inc\n Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima\n Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc.\n Copyright (c) 2010 CodeSourcery\n Copyright (c) 2012 Alan Hourihane\n Copyright (c) 1998 Andreas Schwab\n Copyright (c) 2012, 2016 Thorsten Glaser\n Copyright (c) 2000 Hewlett Packard Company\n Copyright (c) 2009 Bradley Smith\n Copyright (c) 2008 David Daney\n Copyright (c) 2004 Simon Posnjak\n Copyright (c) 2005 Axis Communications AB\n Copyright (c) 1998 Cygnus Solutions\n Copyright (c) 2004 Renesas Technology\n Copyright (c) 2002, 2007 Bo Thorsen <bo at suse.de>\n Copyright (c) 2002 Ranjit Mathew\n Copyright (c) 2002 Roger Sayle\n Copyright (c) 2000, 2007 Software AG\n Copyright (c) 2003 Jakub Jelinek\n Copyright (c) 2000, 2001 John Hornkvist\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2008 Bj\u00f6rn K\u00f6nig\n Copyright (c) 2021 Microsoft, Inc.\n Copyright (c) 2019 Microsoft Corporation.\n Copyright (c) 2012 Alexandre K. I. de Mendonca <alexandre.keunecke at gmail.com>\n Copyright (c) 2012 Paulo Pizarro <paulo.pizarro at gmail.com>\n Copyright (c) 2015 Michael Knyszek <mknyszek at berkeley.edu>\n Copyright (c) 2011 Timothy Wall\n Copyright (c) 2020 Kalray\n Copyright (c) 2013 Tensilica, Inc.\n Copyright (c) 2011-2012 Tilera Corp.\n Copyright (c) 2009-2012 ARM Ltd.\n Copyright (c) 2013 IBM\n Copyright (C) 2011 Kyle Moffett\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2013 The Written Word, Inc.\n Copyright (c) 2013 Imagination Technologies\n Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)\n Copyright (c) 2014 Sebastian Macke <sebastian at macke.de>\n Copyright (c) 2012, 2013 Xilinx, Inc\n Copyright (c) 2013 Miodrag Vallat. <miod at openbsd.org>\n Copyright (c) 2013 Mentor Graphics.\n Copyright (c) 2020 Madhavan T. Venkataraman\nLicense: Expat\nComment: See source files for details.\n The libffi source distribution contains certain code that is not part\n of libffi, and is only used as tooling to assist with the building and\n testing of libffi. This includes the msvcc.sh script used to wrap the\n Microsoft compiler with GNU compatible command-line options,\n make_sunver.pl, and the libffi test code distributed in the\n testsuite/libffi.bhaible directory. This code is distributed with\n libffi for the purpose of convenience only, and libffi is in no way\n derived from this code.\n\nFiles: doc/libffi.*\nCopyright: (C) 2008-2019, 2021 Anthony Green and Red Hat, Inc.\nLicense: Expat\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: libtool-ldflags\nCopyright: (C) 2005 Free Software Foundation, Inc.\nLicense: GPL-2+\nComment: Contributed by CodeSourcery, LLC.\n\nFiles: make_sunver.pl\nCopyright: (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.\nLicense: GPL-3+\nComment: Upstream does not have the license details.\n ffmpeg includes this software as GPL-3+.\n\nFiles: msvcc.sh\nCopyright:\n The Initial Developer of the Original Code is\n Timothy Wall <twalljava at dev.java.net>.\n Portions created by the Initial Developer are Copyright (C) 2009\n the Initial Developer. All Rights Reserved.\nComment: Contributor(s): Daniel Witte <dwitte at mozilla.com>\nLicense: MPL-1.1 or GPL-2+ or LGPL-2.1+\n The contents of this file are subject to the Mozilla Public License Version\n 1.1 (the \"License\"); you may not use this file except in compliance with\n the License. You may obtain a copy of the License at\n http://www.mozilla.org/MPL/\n .\n Software distributed under the License is distributed on an \"AS IS\" basis,\n WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n for the specific language governing rights and limitations under the\n License.\n .\n Alternatively, the contents of this file may be used under the terms of\n either the GNU General Public License Version 2 or later (the \"GPL\"), or\n the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n in which case the provisions of the GPL or the LGPL are applicable instead\n of those above. If you wish to allow use of your version of this file only\n under the terms of either the GPL or the LGPL, and not to allow others to\n use your version of this file under the terms of the MPL, indicate your\n decision by deleting the provisions above and replace them with the notice\n and other provisions required by the GPL or the LGPL. If you do not delete\n the provisions above, a recipient may use your version of this file under\n the terms of any one of the MPL, the GPL or the LGPL.\n .\n On Debian GNU/Linux systems, the complete texts of these licenses are in\n `/usr/share/common-licenses/{MPL-1.1,GPL-2,LGPL-2.1}'.\n\nFiles: src/dlmalloc.c\nCopyright: None (author: Doug Lea)\nLicense: public-domain\n This is a version (aka dlmalloc) of malloc/free/realloc written by\n Doug Lea and released to the public domain, as explained at\n http://creativecommons.org/licenses/publicdomain. Send questions,\n comments, complaints, performance data, etc to dl at cs.oswego.edu\n\nFiles: testsuite/*\nCopyright: (C) 2003-2019 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.closures/*\nCopyright: (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.\n (C) 2019 Anthony Green\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/*\nCopyright:\n Copyright 1993 Bill Triggs <Bill.Triggs at inrialpes.fr>\n Copyright 1995-2017 Bruno Haible <bruno at clisp.org>\n Copyright (C) 2003, 2006, 2009, 2010, 2014, 2018 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/alignof.h\nCopyright: (C) 2003-2004, 2006, 2009-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: (C) 2008, 2011 Matthias Klose <doko at debian.org>\nLicense: GPL\n The Debian packaging is licensed under the GPL,\n see `/usr/share/common-licenses/GPL'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n ``Software''), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n MA 02110-1301, USA. \n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; see the file COPYING.GPLv3. If not see\n <http://www.gnu.org/licenses/>.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthias Klose <doko at debian.org>\nSource: https://github.com/libffi/libffi/releases\nUpstream-Contact:\n Anthony Green <green at redhat.com>\n GCC developers\n See the README and below in the list of copyright holders for a more\n complete list.\n\nFiles: *\nCopyright:\n Copyright (c) 1996-2011 Red Hat, Inc.\n Copyright (C) 1996-2011 Anthony Green\n Copyright (C) 1996-2010 Free Software Foundation, Inc\n Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima\n Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc.\n Copyright (c) 2010 CodeSourcery\n Copyright (c) 2012 Alan Hourihane\n Copyright (c) 1998 Andreas Schwab\n Copyright (c) 2012, 2016 Thorsten Glaser\n Copyright (c) 2000 Hewlett Packard Company\n Copyright (c) 2009 Bradley Smith\n Copyright (c) 2008 David Daney\n Copyright (c) 2004 Simon Posnjak\n Copyright (c) 2005 Axis Communications AB\n Copyright (c) 1998 Cygnus Solutions\n Copyright (c) 2004 Renesas Technology\n Copyright (c) 2002, 2007 Bo Thorsen <bo at suse.de>\n Copyright (c) 2002 Ranjit Mathew\n Copyright (c) 2002 Roger Sayle\n Copyright (c) 2000, 2007 Software AG\n Copyright (c) 2003 Jakub Jelinek\n Copyright (c) 2000, 2001 John Hornkvist\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2008 Bj\u00f6rn K\u00f6nig\n Copyright (c) 2021 Microsoft, Inc.\n Copyright (c) 2019 Microsoft Corporation.\n Copyright (c) 2012 Alexandre K. I. de Mendonca <alexandre.keunecke at gmail.com>\n Copyright (c) 2012 Paulo Pizarro <paulo.pizarro at gmail.com>\n Copyright (c) 2015 Michael Knyszek <mknyszek at berkeley.edu>\n Copyright (c) 2011 Timothy Wall\n Copyright (c) 2020 Kalray\n Copyright (c) 2013 Tensilica, Inc.\n Copyright (c) 2011-2012 Tilera Corp.\n Copyright (c) 2009-2012 ARM Ltd.\n Copyright (c) 2013 IBM\n Copyright (C) 2011 Kyle Moffett\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2013 The Written Word, Inc.\n Copyright (c) 2013 Imagination Technologies\n Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)\n Copyright (c) 2014 Sebastian Macke <sebastian at macke.de>\n Copyright (c) 2012, 2013 Xilinx, Inc\n Copyright (c) 2013 Miodrag Vallat. <miod at openbsd.org>\n Copyright (c) 2013 Mentor Graphics.\n Copyright (c) 2020 Madhavan T. Venkataraman\nLicense: Expat\nComment: See source files for details.\n The libffi source distribution contains certain code that is not part\n of libffi, and is only used as tooling to assist with the building and\n testing of libffi. This includes the msvcc.sh script used to wrap the\n Microsoft compiler with GNU compatible command-line options,\n make_sunver.pl, and the libffi test code distributed in the\n testsuite/libffi.bhaible directory. This code is distributed with\n libffi for the purpose of convenience only, and libffi is in no way\n derived from this code.\n\nFiles: doc/libffi.*\nCopyright: (C) 2008-2019, 2021 Anthony Green and Red Hat, Inc.\nLicense: Expat\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: libtool-ldflags\nCopyright: (C) 2005 Free Software Foundation, Inc.\nLicense: GPL-2+\nComment: Contributed by CodeSourcery, LLC.\n\nFiles: make_sunver.pl\nCopyright: (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.\nLicense: GPL-3+\nComment: Upstream does not have the license details.\n ffmpeg includes this software as GPL-3+.\n\nFiles: msvcc.sh\nCopyright:\n The Initial Developer of the Original Code is\n Timothy Wall <twalljava at dev.java.net>.\n Portions created by the Initial Developer are Copyright (C) 2009\n the Initial Developer. All Rights Reserved.\nComment: Contributor(s): Daniel Witte <dwitte at mozilla.com>\nLicense: MPL-1.1 or GPL-2+ or LGPL-2.1+\n The contents of this file are subject to the Mozilla Public License Version\n 1.1 (the \"License\"); you may not use this file except in compliance with\n the License. You may obtain a copy of the License at\n http://www.mozilla.org/MPL/\n .\n Software distributed under the License is distributed on an \"AS IS\" basis,\n WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n for the specific language governing rights and limitations under the\n License.\n .\n Alternatively, the contents of this file may be used under the terms of\n either the GNU General Public License Version 2 or later (the \"GPL\"), or\n the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n in which case the provisions of the GPL or the LGPL are applicable instead\n of those above. If you wish to allow use of your version of this file only\n under the terms of either the GPL or the LGPL, and not to allow others to\n use your version of this file under the terms of the MPL, indicate your\n decision by deleting the provisions above and replace them with the notice\n and other provisions required by the GPL or the LGPL. If you do not delete\n the provisions above, a recipient may use your version of this file under\n the terms of any one of the MPL, the GPL or the LGPL.\n .\n On Debian GNU/Linux systems, the complete texts of these licenses are in\n `/usr/share/common-licenses/{MPL-1.1,GPL-2,LGPL-2.1}'.\n\nFiles: src/dlmalloc.c\nCopyright: None (author: Doug Lea)\nLicense: public-domain\n This is a version (aka dlmalloc) of malloc/free/realloc written by\n Doug Lea and released to the public domain, as explained at\n http://creativecommons.org/licenses/publicdomain. Send questions,\n comments, complaints, performance data, etc to dl at cs.oswego.edu\n\nFiles: testsuite/*\nCopyright: (C) 2003-2019 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.closures/*\nCopyright: (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.\n (C) 2019 Anthony Green\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/*\nCopyright:\n Copyright 1993 Bill Triggs <Bill.Triggs at inrialpes.fr>\n Copyright 1995-2017 Bruno Haible <bruno at clisp.org>\n Copyright (C) 2003, 2006, 2009, 2010, 2014, 2018 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/alignof.h\nCopyright: (C) 2003-2004, 2006, 2009-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: (C) 2008, 2011 Matthias Klose <doko at debian.org>\nLicense: GPL\n The Debian packaging is licensed under the GPL,\n see `/usr/share/common-licenses/GPL'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n ``Software''), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n MA 02110-1301, USA. \n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; see the file COPYING.GPLv3. If not see\n <http://www.gnu.org/licenses/>.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libffi8 at 3.4.4-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3558,6 +10257,49 @@
"content": "f3d1d48c0599aea85b7f2077a01d285badc42998c1a1e7473935d5cf995c8141"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.1-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthias Klose <doko at debian.org>\nSource: https://github.com/libffi/libffi/releases\nUpstream-Contact:\n Anthony Green <green at redhat.com>\n GCC developers\n See the README and below in the list of copyright holders for a more\n complete list.\n\nFiles: *\nCopyright:\n Copyright (c) 1996-2011 Red Hat, Inc.\n Copyright (C) 1996-2011 Anthony Green\n Copyright (C) 1996-2010 Free Software Foundation, Inc\n Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima\n Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc.\n Copyright (c) 2010 CodeSourcery\n Copyright (c) 2012 Alan Hourihane\n Copyright (c) 1998 Andreas Schwab\n Copyright (c) 2012, 2016 Thorsten Glaser\n Copyright (c) 2000 Hewlett Packard Company\n Copyright (c) 2009 Bradley Smith\n Copyright (c) 2008 David Daney\n Copyright (c) 2004 Simon Posnjak\n Copyright (c) 2005 Axis Communications AB\n Copyright (c) 1998 Cygnus Solutions\n Copyright (c) 2004 Renesas Technology\n Copyright (c) 2002, 2007 Bo Thorsen <bo at suse.de>\n Copyright (c) 2002 Ranjit Mathew\n Copyright (c) 2002 Roger Sayle\n Copyright (c) 2000, 2007 Software AG\n Copyright (c) 2003 Jakub Jelinek\n Copyright (c) 2000, 2001 John Hornkvist\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2008 Bj\u00f6rn K\u00f6nig\n Copyright (c) 2021 Microsoft, Inc.\n Copyright (c) 2019 Microsoft Corporation.\n Copyright (c) 2012 Alexandre K. I. de Mendonca <alexandre.keunecke at gmail.com>\n Copyright (c) 2012 Paulo Pizarro <paulo.pizarro at gmail.com>\n Copyright (c) 2015 Michael Knyszek <mknyszek at berkeley.edu>\n Copyright (c) 2011 Timothy Wall\n Copyright (c) 2020 Kalray\n Copyright (c) 2013 Tensilica, Inc.\n Copyright (c) 2011-2012 Tilera Corp.\n Copyright (c) 2009-2012 ARM Ltd.\n Copyright (c) 2013 IBM\n Copyright (C) 2011 Kyle Moffett\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2013 The Written Word, Inc.\n Copyright (c) 2013 Imagination Technologies\n Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)\n Copyright (c) 2014 Sebastian Macke <sebastian at macke.de>\n Copyright (c) 2012, 2013 Xilinx, Inc\n Copyright (c) 2013 Miodrag Vallat. <miod at openbsd.org>\n Copyright (c) 2013 Mentor Graphics.\n Copyright (c) 2020 Madhavan T. Venkataraman\nLicense: Expat\nComment: See source files for details.\n The libffi source distribution contains certain code that is not part\n of libffi, and is only used as tooling to assist with the building and\n testing of libffi. This includes the msvcc.sh script used to wrap the\n Microsoft compiler with GNU compatible command-line options,\n make_sunver.pl, and the libffi test code distributed in the\n testsuite/libffi.bhaible directory. This code is distributed with\n libffi for the purpose of convenience only, and libffi is in no way\n derived from this code.\n\nFiles: doc/libffi.*\nCopyright: (C) 2008-2019, 2021 Anthony Green and Red Hat, Inc.\nLicense: Expat\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: libtool-ldflags\nCopyright: (C) 2005 Free Software Foundation, Inc.\nLicense: GPL-2+\nComment: Contributed by CodeSourcery, LLC.\n\nFiles: make_sunver.pl\nCopyright: (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.\nLicense: GPL-3+\nComment: Upstream does not have the license details.\n ffmpeg includes this software as GPL-3+.\n\nFiles: msvcc.sh\nCopyright:\n The Initial Developer of the Original Code is\n Timothy Wall <twalljava at dev.java.net>.\n Portions created by the Initial Developer are Copyright (C) 2009\n the Initial Developer. All Rights Reserved.\nComment: Contributor(s): Daniel Witte <dwitte at mozilla.com>\nLicense: MPL-1.1 or GPL-2+ or LGPL-2.1+\n The contents of this file are subject to the Mozilla Public License Version\n 1.1 (the \"License\"); you may not use this file except in compliance with\n the License. You may obtain a copy of the License at\n http://www.mozilla.org/MPL/\n .\n Software distributed under the License is distributed on an \"AS IS\" basis,\n WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n for the specific language governing rights and limitations under the\n License.\n .\n Alternatively, the contents of this file may be used under the terms of\n either the GNU General Public License Version 2 or later (the \"GPL\"), or\n the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n in which case the provisions of the GPL or the LGPL are applicable instead\n of those above. If you wish to allow use of your version of this file only\n under the terms of either the GPL or the LGPL, and not to allow others to\n use your version of this file under the terms of the MPL, indicate your\n decision by deleting the provisions above and replace them with the notice\n and other provisions required by the GPL or the LGPL. If you do not delete\n the provisions above, a recipient may use your version of this file under\n the terms of any one of the MPL, the GPL or the LGPL.\n .\n On Debian GNU/Linux systems, the complete texts of these licenses are in\n `/usr/share/common-licenses/{MPL-1.1,GPL-2,LGPL-2.1}'.\n\nFiles: src/dlmalloc.c\nCopyright: None (author: Doug Lea)\nLicense: public-domain\n This is a version (aka dlmalloc) of malloc/free/realloc written by\n Doug Lea and released to the public domain, as explained at\n http://creativecommons.org/licenses/publicdomain. Send questions,\n comments, complaints, performance data, etc to dl at cs.oswego.edu\n\nFiles: testsuite/*\nCopyright: (C) 2003-2019 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.closures/*\nCopyright: (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.\n (C) 2019 Anthony Green\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/*\nCopyright:\n Copyright 1993 Bill Triggs <Bill.Triggs at inrialpes.fr>\n Copyright 1995-2017 Bruno Haible <bruno at clisp.org>\n Copyright (C) 2003, 2006, 2009, 2010, 2014, 2018 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/alignof.h\nCopyright: (C) 2003-2004, 2006, 2009-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: (C) 2008, 2011 Matthias Klose <doko at debian.org>\nLicense: GPL\n The Debian packaging is licensed under the GPL,\n see `/usr/share/common-licenses/GPL'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n ``Software''), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n MA 02110-1301, USA. \n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; see the file COPYING.GPLv3. If not see\n <http://www.gnu.org/licenses/>.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthias Klose <doko at debian.org>\nSource: https://github.com/libffi/libffi/releases\nUpstream-Contact:\n Anthony Green <green at redhat.com>\n GCC developers\n See the README and below in the list of copyright holders for a more\n complete list.\n\nFiles: *\nCopyright:\n Copyright (c) 1996-2011 Red Hat, Inc.\n Copyright (C) 1996-2011 Anthony Green\n Copyright (C) 1996-2010 Free Software Foundation, Inc\n Copyright (c) 2003, 2004, 2006, 2007, 2008 Kaz Kojima\n Copyright (c) 2010, 2011, Plausible Labs Cooperative , Inc.\n Copyright (c) 2010 CodeSourcery\n Copyright (c) 2012 Alan Hourihane\n Copyright (c) 1998 Andreas Schwab\n Copyright (c) 2012, 2016 Thorsten Glaser\n Copyright (c) 2000 Hewlett Packard Company\n Copyright (c) 2009 Bradley Smith\n Copyright (c) 2008 David Daney\n Copyright (c) 2004 Simon Posnjak\n Copyright (c) 2005 Axis Communications AB\n Copyright (c) 1998 Cygnus Solutions\n Copyright (c) 2004 Renesas Technology\n Copyright (c) 2002, 2007 Bo Thorsen <bo at suse.de>\n Copyright (c) 2002 Ranjit Mathew\n Copyright (c) 2002 Roger Sayle\n Copyright (c) 2000, 2007 Software AG\n Copyright (c) 2003 Jakub Jelinek\n Copyright (c) 2000, 2001 John Hornkvist\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2008 Bj\u00f6rn K\u00f6nig\n Copyright (c) 2021 Microsoft, Inc.\n Copyright (c) 2019 Microsoft Corporation.\n Copyright (c) 2012 Alexandre K. I. de Mendonca <alexandre.keunecke at gmail.com>\n Copyright (c) 2012 Paulo Pizarro <paulo.pizarro at gmail.com>\n Copyright (c) 2015 Michael Knyszek <mknyszek at berkeley.edu>\n Copyright (c) 2011 Timothy Wall\n Copyright (c) 2020 Kalray\n Copyright (c) 2013 Tensilica, Inc.\n Copyright (c) 2011-2012 Tilera Corp.\n Copyright (c) 2009-2012 ARM Ltd.\n Copyright (c) 2013 IBM\n Copyright (C) 2011 Kyle Moffett\n Copyright (c) 1998 Geoffrey Keating\n Copyright (c) 2013 The Written Word, Inc.\n Copyright (c) 2013 Imagination Technologies\n Copyright (c) 2013 Synopsys, Inc. (www.synopsys.com)\n Copyright (c) 2014 Sebastian Macke <sebastian at macke.de>\n Copyright (c) 2012, 2013 Xilinx, Inc\n Copyright (c) 2013 Miodrag Vallat. <miod at openbsd.org>\n Copyright (c) 2013 Mentor Graphics.\n Copyright (c) 2020 Madhavan T. Venkataraman\nLicense: Expat\nComment: See source files for details.\n The libffi source distribution contains certain code that is not part\n of libffi, and is only used as tooling to assist with the building and\n testing of libffi. This includes the msvcc.sh script used to wrap the\n Microsoft compiler with GNU compatible command-line options,\n make_sunver.pl, and the libffi test code distributed in the\n testsuite/libffi.bhaible directory. This code is distributed with\n libffi for the purpose of convenience only, and libffi is in no way\n derived from this code.\n\nFiles: doc/libffi.*\nCopyright: (C) 2008-2019, 2021 Anthony Green and Red Hat, Inc.\nLicense: Expat\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: libtool-ldflags\nCopyright: (C) 2005 Free Software Foundation, Inc.\nLicense: GPL-2+\nComment: Contributed by CodeSourcery, LLC.\n\nFiles: make_sunver.pl\nCopyright: (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc.\nLicense: GPL-3+\nComment: Upstream does not have the license details.\n ffmpeg includes this software as GPL-3+.\n\nFiles: msvcc.sh\nCopyright:\n The Initial Developer of the Original Code is\n Timothy Wall <twalljava at dev.java.net>.\n Portions created by the Initial Developer are Copyright (C) 2009\n the Initial Developer. All Rights Reserved.\nComment: Contributor(s): Daniel Witte <dwitte at mozilla.com>\nLicense: MPL-1.1 or GPL-2+ or LGPL-2.1+\n The contents of this file are subject to the Mozilla Public License Version\n 1.1 (the \"License\"); you may not use this file except in compliance with\n the License. You may obtain a copy of the License at\n http://www.mozilla.org/MPL/\n .\n Software distributed under the License is distributed on an \"AS IS\" basis,\n WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n for the specific language governing rights and limitations under the\n License.\n .\n Alternatively, the contents of this file may be used under the terms of\n either the GNU General Public License Version 2 or later (the \"GPL\"), or\n the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n in which case the provisions of the GPL or the LGPL are applicable instead\n of those above. If you wish to allow use of your version of this file only\n under the terms of either the GPL or the LGPL, and not to allow others to\n use your version of this file under the terms of the MPL, indicate your\n decision by deleting the provisions above and replace them with the notice\n and other provisions required by the GPL or the LGPL. If you do not delete\n the provisions above, a recipient may use your version of this file under\n the terms of any one of the MPL, the GPL or the LGPL.\n .\n On Debian GNU/Linux systems, the complete texts of these licenses are in\n `/usr/share/common-licenses/{MPL-1.1,GPL-2,LGPL-2.1}'.\n\nFiles: src/dlmalloc.c\nCopyright: None (author: Doug Lea)\nLicense: public-domain\n This is a version (aka dlmalloc) of malloc/free/realloc written by\n Doug Lea and released to the public domain, as explained at\n http://creativecommons.org/licenses/publicdomain. Send questions,\n comments, complaints, performance data, etc to dl at cs.oswego.edu\n\nFiles: testsuite/*\nCopyright: (C) 2003-2019 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.closures/*\nCopyright: (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.\n (C) 2019 Anthony Green\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/*\nCopyright:\n Copyright 1993 Bill Triggs <Bill.Triggs at inrialpes.fr>\n Copyright 1995-2017 Bruno Haible <bruno at clisp.org>\n Copyright (C) 2003, 2006, 2009, 2010, 2014, 2018 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: testsuite/libffi.bhaible/alignof.h\nCopyright: (C) 2003-2004, 2006, 2009-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: (C) 2008, 2011 Matthias Klose <doko at debian.org>\nLicense: GPL\n The Debian packaging is licensed under the GPL,\n see `/usr/share/common-licenses/GPL'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n ``Software''), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nLicense: GPL-2+\n This file is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, \n MA 02110-1301, USA. \n\nLicense: GPL-3+\n This file is free software; you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; see the file COPYING.GPLv3. If not see\n <http://www.gnu.org/licenses/>.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgcc-s1 at 12.2.0-14?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3574,6 +10316,7 @@
"content": "bffcac7e4f69e39d37d4a33e841d6371ac8b5aba6cd55546b385dc7ff6c702f5"
}
],
+ "licenses": [],
"purl": "pkg:deb/debian/libgcrypt20 at 1.10.1-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3590,6 +10333,26 @@
"content": "187aedef2ed763f425c1e523753b9719677633c7eede660401739e9c893482bd"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GPL-2.0-or-later OR LGPL-3.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GMP\nSource: http://gmplib.org/\nComment: This gmp package was built for Debian by\n Steve M. Robbins <smr at debian.org>\n Philipp Matthias Hahn <pmhahn at debian.org>\n .\n The documentation is released under the GNU Free Documentation License\n (GFDL) and it has cover texts. As such, it has been determined not to\n meet the Debian Free Software Guidelines, and is not shipped in the\n debian packages.\nFiles-Excluded: doc\n\nFiles: *\nCopyright: 1991, 1996, 1999, 2000, 2007 Free Software Foundation, Inc.\nLicense: GPL-2+ or LGPL-3+\nComment:\n This file is part of the GNU MP Library.\n .\n The GNU MP Library is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n * the GNU Lesser General Public License as published by the Free\n Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n or\n .\n * the GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n .\n or both in parallel, as here.\n .\n The GNU MP Library is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n for more details.\n .\n You should have received copies of the GNU General Public License and the\n GNU Lesser General Public License along with the GNU MP Library. If not,\n see https://www.gnu.org/licenses/.\n\nFiles: demos/calc/*.[chyl]\n demos/factorize.c demos/isprime.c demos/primes.[ch] demos/qcn.c demos/pexpr*\nCopyright: 1995, 1997-2003, 2005, 2006, 2008, 2009, 2012, 2015 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: demos/calc/calc.[ch]\nCopyright: (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n\nLicense: GPL-2+\n The GNU General Public License v2 text is contained in /usr/share/common-licenses/GPL-2.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free Software\n Foundation; either version 3 of the License, or (at your option) any later\n version.\n .\n This program is distributed in the hope that it will be useful, but WITHOUT ANY\n WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n PARTICULAR PURPOSE. See the GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along with\n this program. If not, see <https://www.gnu.org/licenses/>.\n .\n The GNU General Public License v3 text is contained in /usr/share/common-licenses/GPL-3.\n\nLicense: LGPL-3+\n The GNU Lesser General Public License v3 text is contained in /usr/share/common-licenses/LGPL-3.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgmp10 at 2:6.2.1+dfsg1-1.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3598,12 +10361,66 @@
"version": "3.7.9-2+deb12u3",
"hashes": [
{
- "alg": "MD5",
- "content": "70939e1ee83d0a50027417006972029e"
+ "alg": "MD5",
+ "content": "70939e1ee83d0a50027417006972029e"
+ },
+ {
+ "alg": "SHA-256",
+ "content": "cee417d4107bbe94ddcc124524366ea675e89d106b70969a7d508ef26e92a713"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ },
+ {
+ "license": {
+ "name": "The main library is licensed under GNU Lesser",
+ "text": {
+ "content": "This package was debianized by Ivo Timmermans <ivo at debian.org> on\nFri, 3 Aug 2001 10:00:42 +0200.\nIt was later taken over by Matthias Urlichs <smurf at debian.org> and is now\nmaintained by Andreas Metzler <ametzler at debian.org> Eric Dorland\n<eric at debian.org>, James Westby <jw+debian at jameswestby.net>\n\n\nIt was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/\n\nUpstream Authors (from AUTHORS file):\n8X------------------------------------\nThe authors list is autogenerated from the git history; sorted by number of commits\n\nNikos Mavrogiannopoulos <nmav at gnutls.org>\nSimon Josefsson <jas at josefsson.org>\nDaiki Ueno <ueno at gnu.org>\nDmitry Baryshkov <dbaryshkov at gmail.com>\nTim R\u00fchsen <tim.ruehsen at gmx.de>\nLudovic Court\u00e8s <ludo at gnu.org>\nTimo Schulz <twoaday at gnutls.org>\nJonathan Bastien-Filiatrault <joe at x2a.org>\nAndreas Metzler <ametzler at debian.org>\nAlon Bar-Lev <alon.barlev at gmail.com>\nAlexander Sosedkin <asosedkin at redhat.com>\nDaniel Kahn Gillmor <dkg at fifthhorseman.net>\nTom Vrancken <dev at tomvrancken.nl>\nZoltan Fridrich <zfridric at redhat.com>\nMartin Storsjo <martin at martin.st>\nTim Kosse <tim.kosse at filezilla-project.org>\nSimo Sorce <simo at redhat.com>\nFabian Keil <fk at fabiankeil.de>\nFabio Fiorina <fiorinaf at gnutls.org>\nStef Walter <stefw at redhat.com>\nAnderson Toshiyuki Sasaki <ansasaki at redhat.com>\nArmin Burgmeier <armin at arbur.net>\nFranti\u0161ek Kren\u017eelok <krenzelok.frantisek at gmail.com>\nAndrew McDonald <admcd at gnutls.org>\nFiona Klute <fiona.klute at gmx.de>\nAlex Gaynor <alex.gaynor at gmail.com>\nAnder Juaristi <a at juaristi.eus>\nMartin Ukrop <mukrop at redhat.com>\nJaak Ristioja <jaak.ristioja at cyber.ee>\nAttila Molnar <attilamolnar at hush.com>\nHugo Beauz\u00e9e-Luyssen <hugo at beauzee.fr>\nStefan Berger <stefanb at linux.ibm.com>\nSteve Lhomme <robux4 at ycbcr.xyz>\nJakub Jelen <jjelen at redhat.com>\nMartin Sucha <anty.sk+git at gmail.com>\nDavid Woodhouse <dwmw2 at infradead.org>\nJan Vcelak <jan.vcelak at nic.cz>\nKevin Cernekee <cernekee at gmail.com>\nNikolay Sivov <nsivov at codeweavers.com>\nSahana Prasad <sahana at redhat.com>\nMichael Catanzaro <mcatanzaro at gnome.org>\nDaniel Lenski <dlenski at gmail.com>\nJonasZhou <JonasZhou at zhaoxin.com>\nStefan S\u00f8rensen <stefan.sorensen at spectralink.com>\nTobias Heider <tobias.heider at canonical.com>\nAdam Sampson <ats at offog.org>\nAlfredo Pironti <alfredo at pironti.eu>\nBrad Hards <bradh at frogmouth.net>\nDimitri John Ledkov <xnox at ubuntu.com>\nHubert Kario <hkario at redhat.com>\nMichael Weiser <michael.weiser at gmx.de>\nPatrick Pelletier <code at funwithsoftware.org>\nRolf Eike Beer <eike at sf-mail.de>\nRuslan N. Marchenko <me at ruff.mobi>\nSjoerd Simons <sjoerd.simons at collabora.co.uk>\nStefan B\u00fchler <stbuehler at web.de>\nThomas Klute <thomas2.klute at uni-dortmund.de>\nWolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>\nChristian Grothoff <christian at grothoff.org>\nDaniel P. Berrange <berrange at redhat.com>\nEvgeny Grin <k2k at narod.ru>\nGustavo Zacarias <gustavo at zacarias.com.ar>\nJames Bottomley <James.Bottomley at HansenPartnership.com>\nJi\u0159\u00ed Klime\u0161 <jklimes at redhat.com>\nKarsten Ohme <k_o_ at users.sourceforge.net>\nKurt Roeckx <kurt at roeckx.be>\nPeter Wu <peter at lekensteyn.nl>\nStanislav Zidek <szidek at redhat.com>\nStephan Mueller <smueller at chronox.de>\nThierry Quemerais <tquemerais at awox.com>\nTom Carroll <incentivedesign at gmail.com>\nVitezslav Cizek <vcizek at suse.com>\nAlessandro Ghedini <alessandro at ghedini.me>\nAlex Monk <krenair at gmail.com>\nBenjamin Herrenschmidt <benh at kernel.crashing.org>\nBernhard M. Wiedemann <bwiedemann at suse.de>\nCraig Gallek <cgallek at gmail.com>\nDavid Caldwell <david at porkrind.org>\nDiego Elio Petten\u00f2 <flameeyes at flameeyes.eu>\nElta Koepp <alexi_2019 at protonmail.com>\nFabrice Fontaine <fontaine.fabrice at gmail.com>\nGiuseppe Scrivano <gscrivano at gnu.org>\nIlya Tumaykin <itumaykin at gmail.com>\nKarl Tarbe <karl.tarbe at cyber.ee>\nKe Zhao <kzhao at redhat.com>\nLeonardo Bras <leobras.c at gmail.com>\nMark Brand <mabrand at mabrand.nl>\nMatthias-Christian Ott <ott at mirix.org>\nMaya Rashish <coypu at sdf.org>\nMichael Catanzaro <mcatanzaro at igalia.com>\nMicha\u0142 G\u00f3rny <mgorny at gentoo.org>\nMiroslav Lichvar <mlichvar at redhat.com>\nPedro Monreal <pmgdeb at gmail.com>\nPedro Monreal <pmonrealgonzalez at suse.de>\nPetr P\u00edsa\u0159 <petr.pisar at atlas.cz>\nPierre Ossman <ossman at cendio.se>\nRoman Bogorodskiy <bogorodskiy at gmail.com>\nSam James <sam at gentoo.org>\nSimon South <simon at simonsouth.net>\nSteffen Jaeckel <jaeckel-floss at eyet-services.de>\nSteve Dispensa <dispensa at phonefactor.com>\nnia <nia at NetBSD.org>\nraspa0 <raspa0 at protonmail.com>\nAlban Crequy <alban.crequy at collabora.co.uk>\nAlbrecht Dre\u00df <albrecht.dress at arcor.de>\nAleksei Nikiforov <darktemplar at basealt.ru>\nAlexander Kanavin <alex.kanavin at gmail.com>\nAlexandre Bique <bique.alexandre at gmail.com>\nAndreas Schneider <asn at samba.org>\nAndreas Schwab <schwab at suse.de>\nAsad Mehmood <asad78611 at googlemail.com>\nAvinash Sonawane <rootkea at gmail.com>\nBas van Schaik <gitlab.com at s.traiectum.net>\nBjoern Jacke <bjacke at samba.org>\nBj\u00f6rn Jacke <bjacke at samba.org>\nBj\u00f8rn Christensen <bhc at insight.dk>\nBrad Smith <brad at comstyle.com>\nBrian Wickman <bwickman97 at outlook.com>\nCarolin Latze <latze at angry-red-pla.net>\nChen Hongzhi <hongzhi.chen at me.com>\nChris Barry <chris at barry.im>\nColin Walters <walters at verbum.org>\nDan Fandrich <dan at coneharvesters.com>\nDaniel Schaefer <git at danielschaefer.me>\nDavid Walker <david.walker at vcatechnology.com>\nDavid Weber <dave at veryflatcat.com>\nDimitris Apostolou <dimitris.apostolou at icloud.com>\nDmitriy Tsvettsikh <dmitrycvet at gmail.com>\nDosenpfand <m at sad.bz>\nDoug Nazar <nazard at nazar.ca>\nEdward Stangler <estangler at bradmark.com>\nElias Pipping <pipping at exherbo.org>\nElta Koepp <elta_koepp at gmail.com>\nFrank Morgner <morgner at informatik.hu-berlin.de>\nGregor Jasny <gjasny at googlemail.com>\nG\u00fcnther Deschner <gd at samba.org>\nHani Benhabiles <kroosec at gmail.com>\nHannes Reinecke <hare at suse.de>\nHans Leidekker <hans at codeweavers.com>\nIlya V. Matveychikov <i.matveychikov at securitycode.ru>\nJan Palus <jpalus at fastmail.com>\nJared Wong <jaredlwong at gmail.com>\nJason Spafford <nullprogrammer at gmail.com>\nJay Foad <jay.foad at gmail.com>\nJeffrey Walton <noloader at gmail.com>\nJens Lechtenboerger <jens.lechtenboerger at fsfe.org>\nJussi Kukkonen <jussi.kukkonen at intel.com>\nKenneth J. Miller <ken at miller.ec>\nLei Maohui <leimaohui at cn.fujitsu.com>\nLili Quan <13132239506 at 163.com>\nLucas Fisher <lucas.fisher at gmail.com>\nLudwig Nussel <ludwig.nussel at suse.de>\nLuis G.F <luisgf at gmail.com>\nLuke Dashjr <luke-jr+git at utopios.org>\nMaciej S. Szmigiero <mail at maciej.szmigiero.name>\nMaks Naumov <maksqwe1 at ukr.net>\nMarcin Cie\u015blak <saper at saper.info>\nMarcus Meissner <meissner at suse.de>\nMarga Manterola <marga at google.com>\nMarius Bakke <mbakke at fastmail.com>\nMarti Raudsepp <marti at juffo.org>\nMarvin Scholz <epirat07 at gmail.com>\nMatt Turner <mattst88 at gmail.com>\nMatt Whitlock <matt at whitlock.name>\nMicah Anderson <micah at riseup.net>\nMichael Catanzaro <mcatanzaro at redhat.com>\nNick Alcock <nick.alcock at oracle.com>\nNick Child <nick.child at ibm.com>\nNicolas Dufresne <nicolas.dufresne at collabora.com>\nNils Maier <maierman at web.de>\nNorbert Pocs <npocs at redhat.com>\nOlga <olyasib12 at gmail.com>\nOndrej Moris <omoris at redhat.com>\nPetr Pavlu <petr.pavlu at suse.com>\nPhilippe Proulx <eeppeliteloop at gmail.com>\nPhilippe Widmer <pw at earthwave.ch>\nR. Andrew Bailey <bailey at akamai.com>\nRaj Raman <rajramanca at gmail.com>\nRemi Olivier <remi_8 at hotmail.com>\nRical Jasan <ricaljasan at pacific.net>\nRicardo M. Correia <rcorreia at wizy.org>\nRichard Costa <richard.costa at suse.com>\nRickard Bellgrim <rickard at opendnssec.org>\nRobert Scheck <robert at fedoraproject.org>\nRoberto Newmon <robertonewmon at fake-box.com>\nRoss Nicholson <phunkyfish at gmail.com>\nRowan Thorpe <rowan at rowanthorpe.com>\nSUMIT AGGARWAL <aggarwal.s at samsung.com>\nSadie Powell <sadie at witchery.services>\nSaurav Babu <saurav.babu at samsung.com>\nSebastian Dr\u00f6ge <sebastian at centricular.com>\nSeppo Yli-Olli <seppo.yliolli at gmail.com>\nSimon Arlott <sa.me.uk>\nTatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>\nThomas Klausner <wiz at NetBSD.org>\nTobias Polzer <tobias.polzer at fau.de>\nTomas Hoger <thoger at redhat.com>\nTomas Mraz <tmraz at fedoraproject.org>\nTristan Matthews <le.businessman at gmail.com>\nWerner Koch <wk at gnupg.org>\nYuriy M. Kaminskiy <yumkam at gmail.com>\nihsinme <ihsinme at gmail.com>\nrrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>\nsskaje <sskaje at gmail.com>\n\u0141ukasz Stelmach <stlman at poczta.fm>\n\n\nThe translators list is autogenerated from po file history\n\nAnders Jonsson\nBenno Schulenberg\nCristian Oth\u00f3n Mart\u00ednez Vera\nFelipe Castro\nJakub Bogusz\nJorma Karvonen\nMario Bl\u00e4ttermann\nMilo Casagrande\nMingye Wang (Arthur2e5)\nPetr Pisar\nRafael Fontenelle\nRemus-Gabriel Chelu\nSharuzzaman Ahmat Raslan\nSt\u00e9phane Aulery\nTemuri Doghonadze\nTr\u1ea7n Ng\u1ecdc Qu\u00e2n\nYuri Chornoivan\n\u041c\u0438\u0440\u043e\u0441\u043b\u0430\u0432 \u041d\u0438\u043a\u043e\u043b\u0438\u045b\n8X------------------------------------\n\nLicense: The main library is licensed under GNU Lesser\nGeneral Public License (LGPL) version 2.1+, Gnutls Extra (which is currently\njust the openssl wrapper library), build system, testsuite and commandline\nutilities are licenced under the GNU General Public License version 3+. The\nGuile bindings use the same license as the respective underlying library,\ni.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.\n\nHowever to be able to use and link against libgnutls a program needs to be\navailable under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS\nrequires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed\nLGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also\nis dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier\nversion were LGPLv3+ only.)\n\nCopyright:\n--------------------\n/* -*- c -*-\n * Copyright (C) 2000-2019 Free Software Foundation, Inc.\n *\n * Author: Nikos Mavrogiannopoulos\n *\n * This file is part of GnuTLS.\n *\n * The GnuTLS is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public License\n * as published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>\n *\n */\n--------------------\n/*\n * Copyright (C) 2004-2015 Free Software Foundation, Inc.\n * Copyright (c) 2002 Andrew McDonald <andrew at mcdonald.org.uk>\n *\n * This file is part of GnuTLS-EXTRA.\n *\n * GnuTLS-extra is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * GnuTLS-extra is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n--------------------\n\nThe documentation is distributed under the terms of the GNU Free\nDocumentation License (FDL):\n--------------------\nCopyright (C) 2001-2023 Free Software Foundation, Inc.\nCopyright (C) 2001-2023 Nikos Mavrogiannopoulos\n\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n--------------------\n\n--------------------\nFrom December 2012 onwards FSF is not the sole copyright holder of GnuTLS\nanymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),\nthe headers currently also list these authors/copyright holders::\n* Adam Sampson\n* Alexander von Gernler\n* Andrew McDonald\n* ARPA2 project\n* Attila Molnar\n* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin\n* Brian Wickman\n* Canonical, Ltd.\n* Christian Grothoff\n* Daiki Ueno\n* David Woodhouse\n* Dmitry Eremin-Solenikov\n* Dyalog Ltd.\n* Fiona Klute\n* Frank Morgner\n* Fratni\u0161ek Kren\u017eelok\n* Guillaume Roguez\n* Hugo Beauz\u00e9e-Luyssen\n* IBM Corporation\n* INRIA Paris-Rocquencourt\n* Intel Corporation.\n* Joe Orton\n* Karl Tarbe\n* KU Leuven\n* Lucas Fisher\n* Markus Friedl\n* Michael Zucchi\n* Niels M\u00f6ller\n* Nikos Mavrogiannopoulos\n* Paul Sheer\n* Pierre Ossman\n* Red Hat, Inc.\n* Ruslan N. Marchenko\n* Sean Buckheister\n* Simon Josefsson\n* Stephan Mueller\n* The Pkcs11Interop Project\n* Thomas Klute\n* Tim Kosse\n* Tim R\u00fchsen\n* Tobias Heider\n* Tom Vrancken\n--------------------\n\n\n\nOn Debian GNU/Linux systems, the complete text of the latest version of\nthe GNU Lesser General Public License can be found in\n`/usr/share/common-licenses/LGPL' v3 of the license in\n`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can\nbe found in `/usr/share/common-licenses/GPL' (version 3 in\n/usr/share/common-licenses/GPL-3) The GNU Free Documentation\nLicense is available under /usr/share/common-licenses/GFDL-1.3.\n\n============================================\n\nExcerpt from upstream's README:\n\nLICENSING\n=========\n\nSince GnuTLS version 3.1.10, the core library has been released under\nthe GNU Lesser General Public License (LGPL) version 2.1 or later.\n\nNote, however, that version 6.0.0 and later of the gmplib library used\nby GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and\nas such binaries of this library need to adhere to either LGPLv3+ or\nGPLv2+ license.\n\n\n\n\nThe GNU LGPL applies to the main GnuTLS library, while the\nincluded applications as well as gnutls-openssl\nlibrary are under the GNU GPL version 3. The gnutls library is\nlocated in the lib/ and libdane/ directories, while the applications\nin src/ and, the gnutls-openssl library is at extra/.\n\nFor any copyright year range specified as YYYY-ZZZZ in this package\nnote that the range specifies every single year in that closed interval.\n============================================\n============================================\n\nNon FSF code\n\n============================================\n\nlib/accelerated/x86 contains code by Andy Polyakov <appro at openssl.org>,\ncopyright is not assigned to the FSF. The code is licensed under the\nCRYPTOGAMS license.\n\n--------------------\n# Copyright (c) 2011-2016, Andy Polyakov by <appro at openssl.org>\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# * Redistributions of source code must retain copyright notices,\n# this list of conditions and the following disclaimer.\n#\n# * Redistributions in binary form must reproduce the above\n# copyright notice, this list of conditions and the following\n# disclaimer in the documentation and/or other materials\n# provided with the distribution.\n#\n# * Neither the name of the Andy Polyakov nor the names of its\n# copyright holder and contributors may be used to endorse or\n# promote products derived from this software without specific\n# prior written permission.\n#\n# ALTERNATIVELY, provided that this notice is retained in full, this\n# product may be distributed under the terms of the GNU General Public\n# License (GPL), in which case the provisions of the GPL apply INSTEAD OF\n# those given above.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS\n# \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--------------------\n\n============================================\n\nlib/extras/randomart.*\n\n\nUpstream Authors: Markus Friedl\n Alexander von Gernler\n\nCopyright:\n * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.\n * Copyright (c) 2008 Alexander von Gernler. All rights reserved.\nLicense:\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n============================================\n\nlib/accelerated/x86/elf/aes-ssse3-x86.s\nlib/accelerated/x86/macosx/aes-ssse3-x86.s\n\nUpstream Authors: Mike Hamburg (Stanford University)\n\nCopyright:\n * Mike Hamburg (Stanford University), 2009.\nLicense:\n Public domain.\n\n============================================\n\nlib/system/inet_pton.c\n\nUpstream Authors: Internet Software Consortium\n\nCopyright/License:\n * Copyright (c) 1996,1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\n============================================\n\nlib/extras/hex.*\nAuthor: Rusty Russell <rusty at rustcorp.com.au>\nComment: http://ccodearchive.net/info/str/hex.html\nLicense: CC0 license\n Statement of Purpose\n\n The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\").\n\n Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.\n\n For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.\n\n 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following:\n\n the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;\n moral rights retained by the original author(s) and/or performer(s);\n publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;\n rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and\n other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.\n\n 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.\n\n 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.\n\n 4. Limitations and Disclaimers.\n\n No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.\n Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.\n Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.\n Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.\n\n============================================\n\ndoc/examples/tlsproxy/\nCopyright: Copyright (c) 2016 Wrymouth Innovation Ltd\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n============================================\n\nFiles: tests/pkcs11/pkcs11-mock.*\nCopyright: 2011-2016 The Pkcs11Interop Project\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\nX-Comment: Written originally for the Pkcs11Interop project by:\n Jaroslav IMRICH <jimrich at jimrich.sk>\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n============================================\n\nlib/unistring/*\nAuthor: Bruno Haible <bruno at clisp.org>\nCopyright (C) 2009-2020 Free Software Foundation, Inc.\nComment: Debian package is built against libunistring-dev package.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: fuzz/gnutls_base64_decoder_fuzzer.c\n fuzz/gnutls_base64_encoder_fuzzer.c\n fuzz/gnutls_ocsp_req_parser_fuzzer.c\n fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c\n fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c\nCopyright: 2017 Red Hat, Inc.\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\nfuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c\n fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c\n fuzz/gnutls_reverse_idna_parser_fuzzer.c\nCopyright 2016 Nikos Mavrogiannopoulos\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nfuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c\n fuzz/gnutls_x509_parser_fuzzer.c\nCopyright 2016 Google Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nFiles: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c\nCopyright: 2016 Google Inc.\n 2017 Red Hat, Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n\nFiles: fuzz/main.c\nCopyright: 2017 Tim Ruehsen\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n\nFiles: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h\n fuzz/gnutls_psk_server_fuzzer.c\n fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c\n fuzz/gnutls_srp_server_fuzzer.c\n fuzz/handshake.h\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c\nCopyright: 2017 Nikos Mavrogiannopoulos\n 2019 Tom Vrancken (dev at tomvrancken.nl)\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_x509_crq_parser_fuzzer.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPLv2.1+\n\nFiles: lib/compress.c\nCopyright: 2017-2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/compress.h lib/ext/compress_certificate.c\n lib/ext/compress_certificate.h tests/cipher-padding.c\n tests/ktls.sh tests/pkcs7-verify-double-free.c\nCopyright: 2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/backport/block-internal.h\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\n 2018 Red Hat, Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/init.c\nCopyright: 2010-2012 Free Software Foundation, Inc.\n 2022 Tobias Heider <tobias.heider at canonical.com>\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c\n lib/nettle/gost/magma.c\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h\n lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c\n lib/nettle/int/provable-prime.c\nCopyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h\nCopyright: 2013 2017 Red Hat\n 2008 Free Software Foundation, Inc.\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/rsa-keygen-fips186.c\nCopyright: 2002 Niels M\u00f6ller\n 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h\nCopyright: 2001 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/write-le32.c\nCopyright: 2001, 2011 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/block8.h\nCopyright: 2005, 2014 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/mpn-base256.c\n lib/nettle/int/mpn-base256.h\nCopyright: 2013 Niels M\u00f6ller\n 2013 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost28147.h\nCopyright: 2015 Dmitry Eremin-Solenikov\n 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog-meta.c\nCopyright: 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-gost.h\nCopyright: 2001, 2002 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-streebog.c\nCopyright: 2016 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/nettle-write.h\nCopyright: 2010 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.c\nCopyright: 2013-2015 Dmitry Eremin-Solenikov\nComment: Based on my code in libgcrypt.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.h\nCopyright: 2015 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h\n lib/nettle/gost/magma.h\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa2.h\nCopyright: 2015 Dmity Eremin-Solenikov\n 2013 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa-mask.c\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost-wrap.c\nCopyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nFiles: lib/nettle/gost/gost28147.c\nCopyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense:\n based on Russian standard GOST 28147-89\n * For English description, check RFC 5830.\n * S-Boxes are expanded from the tables defined in RFC4357:\n * https://tools.ietf.org/html/rfc4357\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/rnd-fuzzer.c\nCopyright 2017 Red Hat\n Copyright 1995-2017 Free Software Foundation, Inc.\nLicense\n * This file is part of the GNU C Library.\n * Contributed by Ulrich Drepper <drepper at gnu.ai.mit.edu>, August 1995.\n *\n * This file is part of GnuTLS.\n *\n * Libgcrypt is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * Libgcrypt is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this program; if not, see <http://www.gnu.org/licenses/>.\n\nFiles: lib/name_val_array.h\nLicense: LGPLv3+_or_GPLv2+\nCopyright: 2011-2019 Free Software Foundation, Inc.\n 2019 Red Hat, Inc\n\nLicense: LGPLv3+_or_GPLv2+\n * This program is free software: you can redistribute it and/or\n * modify it under the terms of either:\n *\n * * the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 3 of the License, or (at your\n * option) any later version.\n *\n * or\n *\n * * the GNU General Public License as published by the Free\n * Software Foundation; either version 2 of the License, or (at your\n * option) any later version.\n *\n * or both in parallel, as here.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * General Public License for more details.\n *\n * You should have received copies of the GNU General Public License and\n * the GNU Lesser General Public License along with this program. If\n * not, see http://www.gnu.org/licenses/.\n\nFiles: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk\nCopyright: 2021-2022 Daiki Ueno\nLicense: LGPLv2.1+\n\n\nFiles: tests/no-extensions.c tests/system-override-curves.sh\n tests/system-override-hash.c tests/resume-lifetime.c\n tests/system-override-kx.sh tests/system-override-profiles.sh\n tests/system-override-sig.c tests/system-override-sig-hash.sh\n tests/system-override-tls.sh tests/system-override-versions.sh\n tests/iov.c tests/tls13-without-timeout-func.c\n tests/cert-tests/certtool-crl-decoding.sh\n tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh\n tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh\n tests/ciphersuite-name.c\n tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh\n tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh\n tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh\n tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh\n tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh\n tests/fips-rsa-sizes.c\n tests/ocsp-tests/ocsp-load-chain.sh\n tests/ocsp-tests/ocsp-must-staple-connection.sh\n tests/ocsp-tests/ocsptool.sh\n tests/tls13/compress-cert-cli.c\n tests/tls13/hello_retry_request_resume.c\n tests/client-secrets.h\n tests/sanity-lib.sh\n tests/server-secrets.h\n tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c\n tests/tls13/compress-cert-neg.c\n tests/tls13/psk-ke-modes.c\nLicense: GPLv3+\nCopyright: 2014-2022 Red Hat, Inc\n\nFiles: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh\n tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh\n tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh\n tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh\n tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh\n tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh\n tests/cert-tests/provable-privkey-dsa2048.sh\n tests/cert-tests/provable-privkey-gen-default.sh\n tests/cert-tests/provable-privkey-rsa2048.sh\n tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n\nFiles: tests/openconnect-dtls12.c tests/system-override-invalid.sh\n tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh\nLicense: GPLv3+\nCopyright: 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-ok.c\nLicense: GPLv3+\nCopyright: 2016-2019 Tim Kosse\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-missing.c\nLicense: GPLv3+\nCopyright: 2016 Tim Kosse\n\nFiles: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh\n tests/cert-tests/reject-invalid-time.sh\n tests/cert-tests/tolerate-invalid-time.sh\n tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh\n tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c\n tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh\n tests/dtls/dtls-resume.sh\nLicense: GPLv3+\nCopyright: 2016-2017 Red Hat, Inc.\n\nFiles: tests/kdf-api.c\nLicense: LGPLv2.1+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: lib/fipshmac.c\nLicense: LGPLv2.1+\nCopyright: 2020-2022 Red Hat, Inc.\n\nFiles: tests/missingissuer_aia.c tests/missingissuer.c\nLicense: GPLv3+\nCopyright: 2008-2014 Free Software Foundation, Inc.\n\nFiles: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h\n tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh\n tests/cert-tests/pkcs12-encode.sh\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2016 2017 Red Hat, Inc.\n\nFiles: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c\nLicense: GPLv3+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: tests/status-request-revoked.c tests/cert-tests/certtool.sh\n tests/cert-tests/pkcs7.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n 2018 2020 Red Hat, Inc.\n\nFiles: tests/resume-with-record-size-limit.c\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2016-2019 Red Hat, Inc.\n\nFiles: tests/cipher-alignment.c\nLicense: GPLv3+\nCopyright: 2004-2015 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2015 Red Hat, Inc\n\nFiles: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh\n tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh\nLicense: GPLv3+\nCopyright: 2015 Red Hat, Inc.\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/x509-upnconstraint.c\nLicense: GPLv3+\nCopyright: 2022 Brian Wickman\n\nFiles: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c\nLicense: GPLv3+\nCopyright: 2017-2019 Red Hat, Inc.\n\nFiles: tests/tls13/no-auto-send-ticket.c\nLicense: GPLv3+\nCopyright: 2017-2020 Red Hat, Inc.\n\nFiles: tests/sign-verify-newapi.c\nLicense: GPLv3+\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2017-2019 Red Hat, Inc.\n\nFiles: tests/buffer.c\nLicense: GPLv3+\nCopyright: 2019 Tim R\u00fchsen\n\nFiles: tests/gnutls-cli-rawpk.sh\nLicense: GPLv3+\nCopyright: 2019 Tom Vrancken (dev at tomvrancken.nl)\n\nFiles: tests/system-override-default-priority-string.sh\nLicense: GPLv3+\nCopyright: 2019 Canonical, Ltd.\n\nFiles: tests/x509cert-dntypes.c\nLicense: GPLv3+\nCopyright: 2020 Pierre Ossman for Cendio AB\n\nFiles: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c\nLicense: LGPLv2.1+\nCopyright: 2019 Red Hat, Inc.\n\nFiles: tests/pskself2.c\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2019 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs12-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2016 Red Hat, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs7-list-sign.sh\nCopyright: 2017 Karl Tarbe\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs8-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2004-2006, 2010, 2012 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/id-on-xmppAddr.c\nCopyright: 2021 Steffen Jaeckel\nLicense: GPLv3+\n\nFiles: tests/ocsp-tests/ocsp-tls-connection.sh\nCopyright: 2016 Thomas Klute\nLicense: GPLv3+\n\nFiles: tests/tls-channel-binding.c\nCopyright: 2021 Ruslan N. Marchenko\nLicense: GPLv3+\n\nFiles: lib/accelerated/afalg.c\nCopyright: 2017 Stephan Mueller <smueller at chronox.de>\nLicense: LGPLv2.1+\n\n\nFiles: lib/inih/*\nCopyright: 2009-2019, Ben Hoyt\nLicense: BSD-3-Clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Ben Hoyt nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nComment: https://github.com/benhoyt/inih\n~\n"
+ }
+ }
},
{
- "alg": "SHA-256",
- "content": "cee417d4107bbe94ddcc124524366ea675e89d106b70969a7d508ef26e92a713"
+ "license": {
+ "name": "CC0 license",
+ "text": {
+ "content": "This package was debianized by Ivo Timmermans <ivo at debian.org> on\nFri, 3 Aug 2001 10:00:42 +0200.\nIt was later taken over by Matthias Urlichs <smurf at debian.org> and is now\nmaintained by Andreas Metzler <ametzler at debian.org> Eric Dorland\n<eric at debian.org>, James Westby <jw+debian at jameswestby.net>\n\n\nIt was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/\n\nUpstream Authors (from AUTHORS file):\n8X------------------------------------\nThe authors list is autogenerated from the git history; sorted by number of commits\n\nNikos Mavrogiannopoulos <nmav at gnutls.org>\nSimon Josefsson <jas at josefsson.org>\nDaiki Ueno <ueno at gnu.org>\nDmitry Baryshkov <dbaryshkov at gmail.com>\nTim R\u00fchsen <tim.ruehsen at gmx.de>\nLudovic Court\u00e8s <ludo at gnu.org>\nTimo Schulz <twoaday at gnutls.org>\nJonathan Bastien-Filiatrault <joe at x2a.org>\nAndreas Metzler <ametzler at debian.org>\nAlon Bar-Lev <alon.barlev at gmail.com>\nAlexander Sosedkin <asosedkin at redhat.com>\nDaniel Kahn Gillmor <dkg at fifthhorseman.net>\nTom Vrancken <dev at tomvrancken.nl>\nZoltan Fridrich <zfridric at redhat.com>\nMartin Storsjo <martin at martin.st>\nTim Kosse <tim.kosse at filezilla-project.org>\nSimo Sorce <simo at redhat.com>\nFabian Keil <fk at fabiankeil.de>\nFabio Fiorina <fiorinaf at gnutls.org>\nStef Walter <stefw at redhat.com>\nAnderson Toshiyuki Sasaki <ansasaki at redhat.com>\nArmin Burgmeier <armin at arbur.net>\nFranti\u0161ek Kren\u017eelok <krenzelok.frantisek at gmail.com>\nAndrew McDonald <admcd at gnutls.org>\nFiona Klute <fiona.klute at gmx.de>\nAlex Gaynor <alex.gaynor at gmail.com>\nAnder Juaristi <a at juaristi.eus>\nMartin Ukrop <mukrop at redhat.com>\nJaak Ristioja <jaak.ristioja at cyber.ee>\nAttila Molnar <attilamolnar at hush.com>\nHugo Beauz\u00e9e-Luyssen <hugo at beauzee.fr>\nStefan Berger <stefanb at linux.ibm.com>\nSteve Lhomme <robux4 at ycbcr.xyz>\nJakub Jelen <jjelen at redhat.com>\nMartin Sucha <anty.sk+git at gmail.com>\nDavid Woodhouse <dwmw2 at infradead.org>\nJan Vcelak <jan.vcelak at nic.cz>\nKevin Cernekee <cernekee at gmail.com>\nNikolay Sivov <nsivov at codeweavers.com>\nSahana Prasad <sahana at redhat.com>\nMichael Catanzaro <mcatanzaro at gnome.org>\nDaniel Lenski <dlenski at gmail.com>\nJonasZhou <JonasZhou at zhaoxin.com>\nStefan S\u00f8rensen <stefan.sorensen at spectralink.com>\nTobias Heider <tobias.heider at canonical.com>\nAdam Sampson <ats at offog.org>\nAlfredo Pironti <alfredo at pironti.eu>\nBrad Hards <bradh at frogmouth.net>\nDimitri John Ledkov <xnox at ubuntu.com>\nHubert Kario <hkario at redhat.com>\nMichael Weiser <michael.weiser at gmx.de>\nPatrick Pelletier <code at funwithsoftware.org>\nRolf Eike Beer <eike at sf-mail.de>\nRuslan N. Marchenko <me at ruff.mobi>\nSjoerd Simons <sjoerd.simons at collabora.co.uk>\nStefan B\u00fchler <stbuehler at web.de>\nThomas Klute <thomas2.klute at uni-dortmund.de>\nWolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>\nChristian Grothoff <christian at grothoff.org>\nDaniel P. Berrange <berrange at redhat.com>\nEvgeny Grin <k2k at narod.ru>\nGustavo Zacarias <gustavo at zacarias.com.ar>\nJames Bottomley <James.Bottomley at HansenPartnership.com>\nJi\u0159\u00ed Klime\u0161 <jklimes at redhat.com>\nKarsten Ohme <k_o_ at users.sourceforge.net>\nKurt Roeckx <kurt at roeckx.be>\nPeter Wu <peter at lekensteyn.nl>\nStanislav Zidek <szidek at redhat.com>\nStephan Mueller <smueller at chronox.de>\nThierry Quemerais <tquemerais at awox.com>\nTom Carroll <incentivedesign at gmail.com>\nVitezslav Cizek <vcizek at suse.com>\nAlessandro Ghedini <alessandro at ghedini.me>\nAlex Monk <krenair at gmail.com>\nBenjamin Herrenschmidt <benh at kernel.crashing.org>\nBernhard M. Wiedemann <bwiedemann at suse.de>\nCraig Gallek <cgallek at gmail.com>\nDavid Caldwell <david at porkrind.org>\nDiego Elio Petten\u00f2 <flameeyes at flameeyes.eu>\nElta Koepp <alexi_2019 at protonmail.com>\nFabrice Fontaine <fontaine.fabrice at gmail.com>\nGiuseppe Scrivano <gscrivano at gnu.org>\nIlya Tumaykin <itumaykin at gmail.com>\nKarl Tarbe <karl.tarbe at cyber.ee>\nKe Zhao <kzhao at redhat.com>\nLeonardo Bras <leobras.c at gmail.com>\nMark Brand <mabrand at mabrand.nl>\nMatthias-Christian Ott <ott at mirix.org>\nMaya Rashish <coypu at sdf.org>\nMichael Catanzaro <mcatanzaro at igalia.com>\nMicha\u0142 G\u00f3rny <mgorny at gentoo.org>\nMiroslav Lichvar <mlichvar at redhat.com>\nPedro Monreal <pmgdeb at gmail.com>\nPedro Monreal <pmonrealgonzalez at suse.de>\nPetr P\u00edsa\u0159 <petr.pisar at atlas.cz>\nPierre Ossman <ossman at cendio.se>\nRoman Bogorodskiy <bogorodskiy at gmail.com>\nSam James <sam at gentoo.org>\nSimon South <simon at simonsouth.net>\nSteffen Jaeckel <jaeckel-floss at eyet-services.de>\nSteve Dispensa <dispensa at phonefactor.com>\nnia <nia at NetBSD.org>\nraspa0 <raspa0 at protonmail.com>\nAlban Crequy <alban.crequy at collabora.co.uk>\nAlbrecht Dre\u00df <albrecht.dress at arcor.de>\nAleksei Nikiforov <darktemplar at basealt.ru>\nAlexander Kanavin <alex.kanavin at gmail.com>\nAlexandre Bique <bique.alexandre at gmail.com>\nAndreas Schneider <asn at samba.org>\nAndreas Schwab <schwab at suse.de>\nAsad Mehmood <asad78611 at googlemail.com>\nAvinash Sonawane <rootkea at gmail.com>\nBas van Schaik <gitlab.com at s.traiectum.net>\nBjoern Jacke <bjacke at samba.org>\nBj\u00f6rn Jacke <bjacke at samba.org>\nBj\u00f8rn Christensen <bhc at insight.dk>\nBrad Smith <brad at comstyle.com>\nBrian Wickman <bwickman97 at outlook.com>\nCarolin Latze <latze at angry-red-pla.net>\nChen Hongzhi <hongzhi.chen at me.com>\nChris Barry <chris at barry.im>\nColin Walters <walters at verbum.org>\nDan Fandrich <dan at coneharvesters.com>\nDaniel Schaefer <git at danielschaefer.me>\nDavid Walker <david.walker at vcatechnology.com>\nDavid Weber <dave at veryflatcat.com>\nDimitris Apostolou <dimitris.apostolou at icloud.com>\nDmitriy Tsvettsikh <dmitrycvet at gmail.com>\nDosenpfand <m at sad.bz>\nDoug Nazar <nazard at nazar.ca>\nEdward Stangler <estangler at bradmark.com>\nElias Pipping <pipping at exherbo.org>\nElta Koepp <elta_koepp at gmail.com>\nFrank Morgner <morgner at informatik.hu-berlin.de>\nGregor Jasny <gjasny at googlemail.com>\nG\u00fcnther Deschner <gd at samba.org>\nHani Benhabiles <kroosec at gmail.com>\nHannes Reinecke <hare at suse.de>\nHans Leidekker <hans at codeweavers.com>\nIlya V. Matveychikov <i.matveychikov at securitycode.ru>\nJan Palus <jpalus at fastmail.com>\nJared Wong <jaredlwong at gmail.com>\nJason Spafford <nullprogrammer at gmail.com>\nJay Foad <jay.foad at gmail.com>\nJeffrey Walton <noloader at gmail.com>\nJens Lechtenboerger <jens.lechtenboerger at fsfe.org>\nJussi Kukkonen <jussi.kukkonen at intel.com>\nKenneth J. Miller <ken at miller.ec>\nLei Maohui <leimaohui at cn.fujitsu.com>\nLili Quan <13132239506 at 163.com>\nLucas Fisher <lucas.fisher at gmail.com>\nLudwig Nussel <ludwig.nussel at suse.de>\nLuis G.F <luisgf at gmail.com>\nLuke Dashjr <luke-jr+git at utopios.org>\nMaciej S. Szmigiero <mail at maciej.szmigiero.name>\nMaks Naumov <maksqwe1 at ukr.net>\nMarcin Cie\u015blak <saper at saper.info>\nMarcus Meissner <meissner at suse.de>\nMarga Manterola <marga at google.com>\nMarius Bakke <mbakke at fastmail.com>\nMarti Raudsepp <marti at juffo.org>\nMarvin Scholz <epirat07 at gmail.com>\nMatt Turner <mattst88 at gmail.com>\nMatt Whitlock <matt at whitlock.name>\nMicah Anderson <micah at riseup.net>\nMichael Catanzaro <mcatanzaro at redhat.com>\nNick Alcock <nick.alcock at oracle.com>\nNick Child <nick.child at ibm.com>\nNicolas Dufresne <nicolas.dufresne at collabora.com>\nNils Maier <maierman at web.de>\nNorbert Pocs <npocs at redhat.com>\nOlga <olyasib12 at gmail.com>\nOndrej Moris <omoris at redhat.com>\nPetr Pavlu <petr.pavlu at suse.com>\nPhilippe Proulx <eeppeliteloop at gmail.com>\nPhilippe Widmer <pw at earthwave.ch>\nR. Andrew Bailey <bailey at akamai.com>\nRaj Raman <rajramanca at gmail.com>\nRemi Olivier <remi_8 at hotmail.com>\nRical Jasan <ricaljasan at pacific.net>\nRicardo M. Correia <rcorreia at wizy.org>\nRichard Costa <richard.costa at suse.com>\nRickard Bellgrim <rickard at opendnssec.org>\nRobert Scheck <robert at fedoraproject.org>\nRoberto Newmon <robertonewmon at fake-box.com>\nRoss Nicholson <phunkyfish at gmail.com>\nRowan Thorpe <rowan at rowanthorpe.com>\nSUMIT AGGARWAL <aggarwal.s at samsung.com>\nSadie Powell <sadie at witchery.services>\nSaurav Babu <saurav.babu at samsung.com>\nSebastian Dr\u00f6ge <sebastian at centricular.com>\nSeppo Yli-Olli <seppo.yliolli at gmail.com>\nSimon Arlott <sa.me.uk>\nTatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>\nThomas Klausner <wiz at NetBSD.org>\nTobias Polzer <tobias.polzer at fau.de>\nTomas Hoger <thoger at redhat.com>\nTomas Mraz <tmraz at fedoraproject.org>\nTristan Matthews <le.businessman at gmail.com>\nWerner Koch <wk at gnupg.org>\nYuriy M. Kaminskiy <yumkam at gmail.com>\nihsinme <ihsinme at gmail.com>\nrrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>\nsskaje <sskaje at gmail.com>\n\u0141ukasz Stelmach <stlman at poczta.fm>\n\n\nThe translators list is autogenerated from po file history\n\nAnders Jonsson\nBenno Schulenberg\nCristian Oth\u00f3n Mart\u00ednez Vera\nFelipe Castro\nJakub Bogusz\nJorma Karvonen\nMario Bl\u00e4ttermann\nMilo Casagrande\nMingye Wang (Arthur2e5)\nPetr Pisar\nRafael Fontenelle\nRemus-Gabriel Chelu\nSharuzzaman Ahmat Raslan\nSt\u00e9phane Aulery\nTemuri Doghonadze\nTr\u1ea7n Ng\u1ecdc Qu\u00e2n\nYuri Chornoivan\n\u041c\u0438\u0440\u043e\u0441\u043b\u0430\u0432 \u041d\u0438\u043a\u043e\u043b\u0438\u045b\n8X------------------------------------\n\nLicense: The main library is licensed under GNU Lesser\nGeneral Public License (LGPL) version 2.1+, Gnutls Extra (which is currently\njust the openssl wrapper library), build system, testsuite and commandline\nutilities are licenced under the GNU General Public License version 3+. The\nGuile bindings use the same license as the respective underlying library,\ni.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.\n\nHowever to be able to use and link against libgnutls a program needs to be\navailable under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS\nrequires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed\nLGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also\nis dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier\nversion were LGPLv3+ only.)\n\nCopyright:\n--------------------\n/* -*- c -*-\n * Copyright (C) 2000-2019 Free Software Foundation, Inc.\n *\n * Author: Nikos Mavrogiannopoulos\n *\n * This file is part of GnuTLS.\n *\n * The GnuTLS is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public License\n * as published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>\n *\n */\n--------------------\n/*\n * Copyright (C) 2004-2015 Free Software Foundation, Inc.\n * Copyright (c) 2002 Andrew McDonald <andrew at mcdonald.org.uk>\n *\n * This file is part of GnuTLS-EXTRA.\n *\n * GnuTLS-extra is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * GnuTLS-extra is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n--------------------\n\nThe documentation is distributed under the terms of the GNU Free\nDocumentation License (FDL):\n--------------------\nCopyright (C) 2001-2023 Free Software Foundation, Inc.\nCopyright (C) 2001-2023 Nikos Mavrogiannopoulos\n\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n--------------------\n\n--------------------\nFrom December 2012 onwards FSF is not the sole copyright holder of GnuTLS\nanymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),\nthe headers currently also list these authors/copyright holders::\n* Adam Sampson\n* Alexander von Gernler\n* Andrew McDonald\n* ARPA2 project\n* Attila Molnar\n* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin\n* Brian Wickman\n* Canonical, Ltd.\n* Christian Grothoff\n* Daiki Ueno\n* David Woodhouse\n* Dmitry Eremin-Solenikov\n* Dyalog Ltd.\n* Fiona Klute\n* Frank Morgner\n* Fratni\u0161ek Kren\u017eelok\n* Guillaume Roguez\n* Hugo Beauz\u00e9e-Luyssen\n* IBM Corporation\n* INRIA Paris-Rocquencourt\n* Intel Corporation.\n* Joe Orton\n* Karl Tarbe\n* KU Leuven\n* Lucas Fisher\n* Markus Friedl\n* Michael Zucchi\n* Niels M\u00f6ller\n* Nikos Mavrogiannopoulos\n* Paul Sheer\n* Pierre Ossman\n* Red Hat, Inc.\n* Ruslan N. Marchenko\n* Sean Buckheister\n* Simon Josefsson\n* Stephan Mueller\n* The Pkcs11Interop Project\n* Thomas Klute\n* Tim Kosse\n* Tim R\u00fchsen\n* Tobias Heider\n* Tom Vrancken\n--------------------\n\n\n\nOn Debian GNU/Linux systems, the complete text of the latest version of\nthe GNU Lesser General Public License can be found in\n`/usr/share/common-licenses/LGPL' v3 of the license in\n`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can\nbe found in `/usr/share/common-licenses/GPL' (version 3 in\n/usr/share/common-licenses/GPL-3) The GNU Free Documentation\nLicense is available under /usr/share/common-licenses/GFDL-1.3.\n\n============================================\n\nExcerpt from upstream's README:\n\nLICENSING\n=========\n\nSince GnuTLS version 3.1.10, the core library has been released under\nthe GNU Lesser General Public License (LGPL) version 2.1 or later.\n\nNote, however, that version 6.0.0 and later of the gmplib library used\nby GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and\nas such binaries of this library need to adhere to either LGPLv3+ or\nGPLv2+ license.\n\n\n\n\nThe GNU LGPL applies to the main GnuTLS library, while the\nincluded applications as well as gnutls-openssl\nlibrary are under the GNU GPL version 3. The gnutls library is\nlocated in the lib/ and libdane/ directories, while the applications\nin src/ and, the gnutls-openssl library is at extra/.\n\nFor any copyright year range specified as YYYY-ZZZZ in this package\nnote that the range specifies every single year in that closed interval.\n============================================\n============================================\n\nNon FSF code\n\n============================================\n\nlib/accelerated/x86 contains code by Andy Polyakov <appro at openssl.org>,\ncopyright is not assigned to the FSF. The code is licensed under the\nCRYPTOGAMS license.\n\n--------------------\n# Copyright (c) 2011-2016, Andy Polyakov by <appro at openssl.org>\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# * Redistributions of source code must retain copyright notices,\n# this list of conditions and the following disclaimer.\n#\n# * Redistributions in binary form must reproduce the above\n# copyright notice, this list of conditions and the following\n# disclaimer in the documentation and/or other materials\n# provided with the distribution.\n#\n# * Neither the name of the Andy Polyakov nor the names of its\n# copyright holder and contributors may be used to endorse or\n# promote products derived from this software without specific\n# prior written permission.\n#\n# ALTERNATIVELY, provided that this notice is retained in full, this\n# product may be distributed under the terms of the GNU General Public\n# License (GPL), in which case the provisions of the GPL apply INSTEAD OF\n# those given above.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS\n# \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--------------------\n\n============================================\n\nlib/extras/randomart.*\n\n\nUpstream Authors: Markus Friedl\n Alexander von Gernler\n\nCopyright:\n * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.\n * Copyright (c) 2008 Alexander von Gernler. All rights reserved.\nLicense:\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n============================================\n\nlib/accelerated/x86/elf/aes-ssse3-x86.s\nlib/accelerated/x86/macosx/aes-ssse3-x86.s\n\nUpstream Authors: Mike Hamburg (Stanford University)\n\nCopyright:\n * Mike Hamburg (Stanford University), 2009.\nLicense:\n Public domain.\n\n============================================\n\nlib/system/inet_pton.c\n\nUpstream Authors: Internet Software Consortium\n\nCopyright/License:\n * Copyright (c) 1996,1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\n============================================\n\nlib/extras/hex.*\nAuthor: Rusty Russell <rusty at rustcorp.com.au>\nComment: http://ccodearchive.net/info/str/hex.html\nLicense: CC0 license\n Statement of Purpose\n\n The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\").\n\n Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.\n\n For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.\n\n 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following:\n\n the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;\n moral rights retained by the original author(s) and/or performer(s);\n publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;\n rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and\n other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.\n\n 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.\n\n 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.\n\n 4. Limitations and Disclaimers.\n\n No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.\n Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.\n Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.\n Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.\n\n============================================\n\ndoc/examples/tlsproxy/\nCopyright: Copyright (c) 2016 Wrymouth Innovation Ltd\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n============================================\n\nFiles: tests/pkcs11/pkcs11-mock.*\nCopyright: 2011-2016 The Pkcs11Interop Project\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\nX-Comment: Written originally for the Pkcs11Interop project by:\n Jaroslav IMRICH <jimrich at jimrich.sk>\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n============================================\n\nlib/unistring/*\nAuthor: Bruno Haible <bruno at clisp.org>\nCopyright (C) 2009-2020 Free Software Foundation, Inc.\nComment: Debian package is built against libunistring-dev package.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: fuzz/gnutls_base64_decoder_fuzzer.c\n fuzz/gnutls_base64_encoder_fuzzer.c\n fuzz/gnutls_ocsp_req_parser_fuzzer.c\n fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c\n fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c\nCopyright: 2017 Red Hat, Inc.\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\nfuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c\n fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c\n fuzz/gnutls_reverse_idna_parser_fuzzer.c\nCopyright 2016 Nikos Mavrogiannopoulos\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nfuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c\n fuzz/gnutls_x509_parser_fuzzer.c\nCopyright 2016 Google Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nFiles: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c\nCopyright: 2016 Google Inc.\n 2017 Red Hat, Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n\nFiles: fuzz/main.c\nCopyright: 2017 Tim Ruehsen\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n\nFiles: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h\n fuzz/gnutls_psk_server_fuzzer.c\n fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c\n fuzz/gnutls_srp_server_fuzzer.c\n fuzz/handshake.h\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c\nCopyright: 2017 Nikos Mavrogiannopoulos\n 2019 Tom Vrancken (dev at tomvrancken.nl)\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_x509_crq_parser_fuzzer.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPLv2.1+\n\nFiles: lib/compress.c\nCopyright: 2017-2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/compress.h lib/ext/compress_certificate.c\n lib/ext/compress_certificate.h tests/cipher-padding.c\n tests/ktls.sh tests/pkcs7-verify-double-free.c\nCopyright: 2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/backport/block-internal.h\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\n 2018 Red Hat, Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/init.c\nCopyright: 2010-2012 Free Software Foundation, Inc.\n 2022 Tobias Heider <tobias.heider at canonical.com>\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c\n lib/nettle/gost/magma.c\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h\n lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c\n lib/nettle/int/provable-prime.c\nCopyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h\nCopyright: 2013 2017 Red Hat\n 2008 Free Software Foundation, Inc.\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/rsa-keygen-fips186.c\nCopyright: 2002 Niels M\u00f6ller\n 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h\nCopyright: 2001 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/write-le32.c\nCopyright: 2001, 2011 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/block8.h\nCopyright: 2005, 2014 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/mpn-base256.c\n lib/nettle/int/mpn-base256.h\nCopyright: 2013 Niels M\u00f6ller\n 2013 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost28147.h\nCopyright: 2015 Dmitry Eremin-Solenikov\n 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog-meta.c\nCopyright: 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-gost.h\nCopyright: 2001, 2002 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-streebog.c\nCopyright: 2016 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/nettle-write.h\nCopyright: 2010 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.c\nCopyright: 2013-2015 Dmitry Eremin-Solenikov\nComment: Based on my code in libgcrypt.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.h\nCopyright: 2015 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h\n lib/nettle/gost/magma.h\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa2.h\nCopyright: 2015 Dmity Eremin-Solenikov\n 2013 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa-mask.c\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost-wrap.c\nCopyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nFiles: lib/nettle/gost/gost28147.c\nCopyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense:\n based on Russian standard GOST 28147-89\n * For English description, check RFC 5830.\n * S-Boxes are expanded from the tables defined in RFC4357:\n * https://tools.ietf.org/html/rfc4357\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/rnd-fuzzer.c\nCopyright 2017 Red Hat\n Copyright 1995-2017 Free Software Foundation, Inc.\nLicense\n * This file is part of the GNU C Library.\n * Contributed by Ulrich Drepper <drepper at gnu.ai.mit.edu>, August 1995.\n *\n * This file is part of GnuTLS.\n *\n * Libgcrypt is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * Libgcrypt is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this program; if not, see <http://www.gnu.org/licenses/>.\n\nFiles: lib/name_val_array.h\nLicense: LGPLv3+_or_GPLv2+\nCopyright: 2011-2019 Free Software Foundation, Inc.\n 2019 Red Hat, Inc\n\nLicense: LGPLv3+_or_GPLv2+\n * This program is free software: you can redistribute it and/or\n * modify it under the terms of either:\n *\n * * the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 3 of the License, or (at your\n * option) any later version.\n *\n * or\n *\n * * the GNU General Public License as published by the Free\n * Software Foundation; either version 2 of the License, or (at your\n * option) any later version.\n *\n * or both in parallel, as here.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * General Public License for more details.\n *\n * You should have received copies of the GNU General Public License and\n * the GNU Lesser General Public License along with this program. If\n * not, see http://www.gnu.org/licenses/.\n\nFiles: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk\nCopyright: 2021-2022 Daiki Ueno\nLicense: LGPLv2.1+\n\n\nFiles: tests/no-extensions.c tests/system-override-curves.sh\n tests/system-override-hash.c tests/resume-lifetime.c\n tests/system-override-kx.sh tests/system-override-profiles.sh\n tests/system-override-sig.c tests/system-override-sig-hash.sh\n tests/system-override-tls.sh tests/system-override-versions.sh\n tests/iov.c tests/tls13-without-timeout-func.c\n tests/cert-tests/certtool-crl-decoding.sh\n tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh\n tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh\n tests/ciphersuite-name.c\n tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh\n tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh\n tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh\n tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh\n tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh\n tests/fips-rsa-sizes.c\n tests/ocsp-tests/ocsp-load-chain.sh\n tests/ocsp-tests/ocsp-must-staple-connection.sh\n tests/ocsp-tests/ocsptool.sh\n tests/tls13/compress-cert-cli.c\n tests/tls13/hello_retry_request_resume.c\n tests/client-secrets.h\n tests/sanity-lib.sh\n tests/server-secrets.h\n tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c\n tests/tls13/compress-cert-neg.c\n tests/tls13/psk-ke-modes.c\nLicense: GPLv3+\nCopyright: 2014-2022 Red Hat, Inc\n\nFiles: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh\n tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh\n tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh\n tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh\n tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh\n tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh\n tests/cert-tests/provable-privkey-dsa2048.sh\n tests/cert-tests/provable-privkey-gen-default.sh\n tests/cert-tests/provable-privkey-rsa2048.sh\n tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n\nFiles: tests/openconnect-dtls12.c tests/system-override-invalid.sh\n tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh\nLicense: GPLv3+\nCopyright: 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-ok.c\nLicense: GPLv3+\nCopyright: 2016-2019 Tim Kosse\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-missing.c\nLicense: GPLv3+\nCopyright: 2016 Tim Kosse\n\nFiles: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh\n tests/cert-tests/reject-invalid-time.sh\n tests/cert-tests/tolerate-invalid-time.sh\n tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh\n tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c\n tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh\n tests/dtls/dtls-resume.sh\nLicense: GPLv3+\nCopyright: 2016-2017 Red Hat, Inc.\n\nFiles: tests/kdf-api.c\nLicense: LGPLv2.1+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: lib/fipshmac.c\nLicense: LGPLv2.1+\nCopyright: 2020-2022 Red Hat, Inc.\n\nFiles: tests/missingissuer_aia.c tests/missingissuer.c\nLicense: GPLv3+\nCopyright: 2008-2014 Free Software Foundation, Inc.\n\nFiles: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h\n tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh\n tests/cert-tests/pkcs12-encode.sh\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2016 2017 Red Hat, Inc.\n\nFiles: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c\nLicense: GPLv3+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: tests/status-request-revoked.c tests/cert-tests/certtool.sh\n tests/cert-tests/pkcs7.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n 2018 2020 Red Hat, Inc.\n\nFiles: tests/resume-with-record-size-limit.c\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2016-2019 Red Hat, Inc.\n\nFiles: tests/cipher-alignment.c\nLicense: GPLv3+\nCopyright: 2004-2015 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2015 Red Hat, Inc\n\nFiles: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh\n tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh\nLicense: GPLv3+\nCopyright: 2015 Red Hat, Inc.\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/x509-upnconstraint.c\nLicense: GPLv3+\nCopyright: 2022 Brian Wickman\n\nFiles: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c\nLicense: GPLv3+\nCopyright: 2017-2019 Red Hat, Inc.\n\nFiles: tests/tls13/no-auto-send-ticket.c\nLicense: GPLv3+\nCopyright: 2017-2020 Red Hat, Inc.\n\nFiles: tests/sign-verify-newapi.c\nLicense: GPLv3+\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2017-2019 Red Hat, Inc.\n\nFiles: tests/buffer.c\nLicense: GPLv3+\nCopyright: 2019 Tim R\u00fchsen\n\nFiles: tests/gnutls-cli-rawpk.sh\nLicense: GPLv3+\nCopyright: 2019 Tom Vrancken (dev at tomvrancken.nl)\n\nFiles: tests/system-override-default-priority-string.sh\nLicense: GPLv3+\nCopyright: 2019 Canonical, Ltd.\n\nFiles: tests/x509cert-dntypes.c\nLicense: GPLv3+\nCopyright: 2020 Pierre Ossman for Cendio AB\n\nFiles: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c\nLicense: LGPLv2.1+\nCopyright: 2019 Red Hat, Inc.\n\nFiles: tests/pskself2.c\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2019 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs12-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2016 Red Hat, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs7-list-sign.sh\nCopyright: 2017 Karl Tarbe\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs8-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2004-2006, 2010, 2012 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/id-on-xmppAddr.c\nCopyright: 2021 Steffen Jaeckel\nLicense: GPLv3+\n\nFiles: tests/ocsp-tests/ocsp-tls-connection.sh\nCopyright: 2016 Thomas Klute\nLicense: GPLv3+\n\nFiles: tests/tls-channel-binding.c\nCopyright: 2021 Ruslan N. Marchenko\nLicense: GPLv3+\n\nFiles: lib/accelerated/afalg.c\nCopyright: 2017 Stephan Mueller <smueller at chronox.de>\nLicense: LGPLv2.1+\n\n\nFiles: lib/inih/*\nCopyright: 2009-2019, Ben Hoyt\nLicense: BSD-3-Clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Ben Hoyt nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nComment: https://github.com/benhoyt/inih\n~\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "LGPLv2.1+",
+ "text": {
+ "content": "This package was debianized by Ivo Timmermans <ivo at debian.org> on\nFri, 3 Aug 2001 10:00:42 +0200.\nIt was later taken over by Matthias Urlichs <smurf at debian.org> and is now\nmaintained by Andreas Metzler <ametzler at debian.org> Eric Dorland\n<eric at debian.org>, James Westby <jw+debian at jameswestby.net>\n\n\nIt was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/\n\nUpstream Authors (from AUTHORS file):\n8X------------------------------------\nThe authors list is autogenerated from the git history; sorted by number of commits\n\nNikos Mavrogiannopoulos <nmav at gnutls.org>\nSimon Josefsson <jas at josefsson.org>\nDaiki Ueno <ueno at gnu.org>\nDmitry Baryshkov <dbaryshkov at gmail.com>\nTim R\u00fchsen <tim.ruehsen at gmx.de>\nLudovic Court\u00e8s <ludo at gnu.org>\nTimo Schulz <twoaday at gnutls.org>\nJonathan Bastien-Filiatrault <joe at x2a.org>\nAndreas Metzler <ametzler at debian.org>\nAlon Bar-Lev <alon.barlev at gmail.com>\nAlexander Sosedkin <asosedkin at redhat.com>\nDaniel Kahn Gillmor <dkg at fifthhorseman.net>\nTom Vrancken <dev at tomvrancken.nl>\nZoltan Fridrich <zfridric at redhat.com>\nMartin Storsjo <martin at martin.st>\nTim Kosse <tim.kosse at filezilla-project.org>\nSimo Sorce <simo at redhat.com>\nFabian Keil <fk at fabiankeil.de>\nFabio Fiorina <fiorinaf at gnutls.org>\nStef Walter <stefw at redhat.com>\nAnderson Toshiyuki Sasaki <ansasaki at redhat.com>\nArmin Burgmeier <armin at arbur.net>\nFranti\u0161ek Kren\u017eelok <krenzelok.frantisek at gmail.com>\nAndrew McDonald <admcd at gnutls.org>\nFiona Klute <fiona.klute at gmx.de>\nAlex Gaynor <alex.gaynor at gmail.com>\nAnder Juaristi <a at juaristi.eus>\nMartin Ukrop <mukrop at redhat.com>\nJaak Ristioja <jaak.ristioja at cyber.ee>\nAttila Molnar <attilamolnar at hush.com>\nHugo Beauz\u00e9e-Luyssen <hugo at beauzee.fr>\nStefan Berger <stefanb at linux.ibm.com>\nSteve Lhomme <robux4 at ycbcr.xyz>\nJakub Jelen <jjelen at redhat.com>\nMartin Sucha <anty.sk+git at gmail.com>\nDavid Woodhouse <dwmw2 at infradead.org>\nJan Vcelak <jan.vcelak at nic.cz>\nKevin Cernekee <cernekee at gmail.com>\nNikolay Sivov <nsivov at codeweavers.com>\nSahana Prasad <sahana at redhat.com>\nMichael Catanzaro <mcatanzaro at gnome.org>\nDaniel Lenski <dlenski at gmail.com>\nJonasZhou <JonasZhou at zhaoxin.com>\nStefan S\u00f8rensen <stefan.sorensen at spectralink.com>\nTobias Heider <tobias.heider at canonical.com>\nAdam Sampson <ats at offog.org>\nAlfredo Pironti <alfredo at pironti.eu>\nBrad Hards <bradh at frogmouth.net>\nDimitri John Ledkov <xnox at ubuntu.com>\nHubert Kario <hkario at redhat.com>\nMichael Weiser <michael.weiser at gmx.de>\nPatrick Pelletier <code at funwithsoftware.org>\nRolf Eike Beer <eike at sf-mail.de>\nRuslan N. Marchenko <me at ruff.mobi>\nSjoerd Simons <sjoerd.simons at collabora.co.uk>\nStefan B\u00fchler <stbuehler at web.de>\nThomas Klute <thomas2.klute at uni-dortmund.de>\nWolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>\nChristian Grothoff <christian at grothoff.org>\nDaniel P. Berrange <berrange at redhat.com>\nEvgeny Grin <k2k at narod.ru>\nGustavo Zacarias <gustavo at zacarias.com.ar>\nJames Bottomley <James.Bottomley at HansenPartnership.com>\nJi\u0159\u00ed Klime\u0161 <jklimes at redhat.com>\nKarsten Ohme <k_o_ at users.sourceforge.net>\nKurt Roeckx <kurt at roeckx.be>\nPeter Wu <peter at lekensteyn.nl>\nStanislav Zidek <szidek at redhat.com>\nStephan Mueller <smueller at chronox.de>\nThierry Quemerais <tquemerais at awox.com>\nTom Carroll <incentivedesign at gmail.com>\nVitezslav Cizek <vcizek at suse.com>\nAlessandro Ghedini <alessandro at ghedini.me>\nAlex Monk <krenair at gmail.com>\nBenjamin Herrenschmidt <benh at kernel.crashing.org>\nBernhard M. Wiedemann <bwiedemann at suse.de>\nCraig Gallek <cgallek at gmail.com>\nDavid Caldwell <david at porkrind.org>\nDiego Elio Petten\u00f2 <flameeyes at flameeyes.eu>\nElta Koepp <alexi_2019 at protonmail.com>\nFabrice Fontaine <fontaine.fabrice at gmail.com>\nGiuseppe Scrivano <gscrivano at gnu.org>\nIlya Tumaykin <itumaykin at gmail.com>\nKarl Tarbe <karl.tarbe at cyber.ee>\nKe Zhao <kzhao at redhat.com>\nLeonardo Bras <leobras.c at gmail.com>\nMark Brand <mabrand at mabrand.nl>\nMatthias-Christian Ott <ott at mirix.org>\nMaya Rashish <coypu at sdf.org>\nMichael Catanzaro <mcatanzaro at igalia.com>\nMicha\u0142 G\u00f3rny <mgorny at gentoo.org>\nMiroslav Lichvar <mlichvar at redhat.com>\nPedro Monreal <pmgdeb at gmail.com>\nPedro Monreal <pmonrealgonzalez at suse.de>\nPetr P\u00edsa\u0159 <petr.pisar at atlas.cz>\nPierre Ossman <ossman at cendio.se>\nRoman Bogorodskiy <bogorodskiy at gmail.com>\nSam James <sam at gentoo.org>\nSimon South <simon at simonsouth.net>\nSteffen Jaeckel <jaeckel-floss at eyet-services.de>\nSteve Dispensa <dispensa at phonefactor.com>\nnia <nia at NetBSD.org>\nraspa0 <raspa0 at protonmail.com>\nAlban Crequy <alban.crequy at collabora.co.uk>\nAlbrecht Dre\u00df <albrecht.dress at arcor.de>\nAleksei Nikiforov <darktemplar at basealt.ru>\nAlexander Kanavin <alex.kanavin at gmail.com>\nAlexandre Bique <bique.alexandre at gmail.com>\nAndreas Schneider <asn at samba.org>\nAndreas Schwab <schwab at suse.de>\nAsad Mehmood <asad78611 at googlemail.com>\nAvinash Sonawane <rootkea at gmail.com>\nBas van Schaik <gitlab.com at s.traiectum.net>\nBjoern Jacke <bjacke at samba.org>\nBj\u00f6rn Jacke <bjacke at samba.org>\nBj\u00f8rn Christensen <bhc at insight.dk>\nBrad Smith <brad at comstyle.com>\nBrian Wickman <bwickman97 at outlook.com>\nCarolin Latze <latze at angry-red-pla.net>\nChen Hongzhi <hongzhi.chen at me.com>\nChris Barry <chris at barry.im>\nColin Walters <walters at verbum.org>\nDan Fandrich <dan at coneharvesters.com>\nDaniel Schaefer <git at danielschaefer.me>\nDavid Walker <david.walker at vcatechnology.com>\nDavid Weber <dave at veryflatcat.com>\nDimitris Apostolou <dimitris.apostolou at icloud.com>\nDmitriy Tsvettsikh <dmitrycvet at gmail.com>\nDosenpfand <m at sad.bz>\nDoug Nazar <nazard at nazar.ca>\nEdward Stangler <estangler at bradmark.com>\nElias Pipping <pipping at exherbo.org>\nElta Koepp <elta_koepp at gmail.com>\nFrank Morgner <morgner at informatik.hu-berlin.de>\nGregor Jasny <gjasny at googlemail.com>\nG\u00fcnther Deschner <gd at samba.org>\nHani Benhabiles <kroosec at gmail.com>\nHannes Reinecke <hare at suse.de>\nHans Leidekker <hans at codeweavers.com>\nIlya V. Matveychikov <i.matveychikov at securitycode.ru>\nJan Palus <jpalus at fastmail.com>\nJared Wong <jaredlwong at gmail.com>\nJason Spafford <nullprogrammer at gmail.com>\nJay Foad <jay.foad at gmail.com>\nJeffrey Walton <noloader at gmail.com>\nJens Lechtenboerger <jens.lechtenboerger at fsfe.org>\nJussi Kukkonen <jussi.kukkonen at intel.com>\nKenneth J. Miller <ken at miller.ec>\nLei Maohui <leimaohui at cn.fujitsu.com>\nLili Quan <13132239506 at 163.com>\nLucas Fisher <lucas.fisher at gmail.com>\nLudwig Nussel <ludwig.nussel at suse.de>\nLuis G.F <luisgf at gmail.com>\nLuke Dashjr <luke-jr+git at utopios.org>\nMaciej S. Szmigiero <mail at maciej.szmigiero.name>\nMaks Naumov <maksqwe1 at ukr.net>\nMarcin Cie\u015blak <saper at saper.info>\nMarcus Meissner <meissner at suse.de>\nMarga Manterola <marga at google.com>\nMarius Bakke <mbakke at fastmail.com>\nMarti Raudsepp <marti at juffo.org>\nMarvin Scholz <epirat07 at gmail.com>\nMatt Turner <mattst88 at gmail.com>\nMatt Whitlock <matt at whitlock.name>\nMicah Anderson <micah at riseup.net>\nMichael Catanzaro <mcatanzaro at redhat.com>\nNick Alcock <nick.alcock at oracle.com>\nNick Child <nick.child at ibm.com>\nNicolas Dufresne <nicolas.dufresne at collabora.com>\nNils Maier <maierman at web.de>\nNorbert Pocs <npocs at redhat.com>\nOlga <olyasib12 at gmail.com>\nOndrej Moris <omoris at redhat.com>\nPetr Pavlu <petr.pavlu at suse.com>\nPhilippe Proulx <eeppeliteloop at gmail.com>\nPhilippe Widmer <pw at earthwave.ch>\nR. Andrew Bailey <bailey at akamai.com>\nRaj Raman <rajramanca at gmail.com>\nRemi Olivier <remi_8 at hotmail.com>\nRical Jasan <ricaljasan at pacific.net>\nRicardo M. Correia <rcorreia at wizy.org>\nRichard Costa <richard.costa at suse.com>\nRickard Bellgrim <rickard at opendnssec.org>\nRobert Scheck <robert at fedoraproject.org>\nRoberto Newmon <robertonewmon at fake-box.com>\nRoss Nicholson <phunkyfish at gmail.com>\nRowan Thorpe <rowan at rowanthorpe.com>\nSUMIT AGGARWAL <aggarwal.s at samsung.com>\nSadie Powell <sadie at witchery.services>\nSaurav Babu <saurav.babu at samsung.com>\nSebastian Dr\u00f6ge <sebastian at centricular.com>\nSeppo Yli-Olli <seppo.yliolli at gmail.com>\nSimon Arlott <sa.me.uk>\nTatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>\nThomas Klausner <wiz at NetBSD.org>\nTobias Polzer <tobias.polzer at fau.de>\nTomas Hoger <thoger at redhat.com>\nTomas Mraz <tmraz at fedoraproject.org>\nTristan Matthews <le.businessman at gmail.com>\nWerner Koch <wk at gnupg.org>\nYuriy M. Kaminskiy <yumkam at gmail.com>\nihsinme <ihsinme at gmail.com>\nrrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>\nsskaje <sskaje at gmail.com>\n\u0141ukasz Stelmach <stlman at poczta.fm>\n\n\nThe translators list is autogenerated from po file history\n\nAnders Jonsson\nBenno Schulenberg\nCristian Oth\u00f3n Mart\u00ednez Vera\nFelipe Castro\nJakub Bogusz\nJorma Karvonen\nMario Bl\u00e4ttermann\nMilo Casagrande\nMingye Wang (Arthur2e5)\nPetr Pisar\nRafael Fontenelle\nRemus-Gabriel Chelu\nSharuzzaman Ahmat Raslan\nSt\u00e9phane Aulery\nTemuri Doghonadze\nTr\u1ea7n Ng\u1ecdc Qu\u00e2n\nYuri Chornoivan\n\u041c\u0438\u0440\u043e\u0441\u043b\u0430\u0432 \u041d\u0438\u043a\u043e\u043b\u0438\u045b\n8X------------------------------------\n\nLicense: The main library is licensed under GNU Lesser\nGeneral Public License (LGPL) version 2.1+, Gnutls Extra (which is currently\njust the openssl wrapper library), build system, testsuite and commandline\nutilities are licenced under the GNU General Public License version 3+. The\nGuile bindings use the same license as the respective underlying library,\ni.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.\n\nHowever to be able to use and link against libgnutls a program needs to be\navailable under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS\nrequires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed\nLGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also\nis dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier\nversion were LGPLv3+ only.)\n\nCopyright:\n--------------------\n/* -*- c -*-\n * Copyright (C) 2000-2019 Free Software Foundation, Inc.\n *\n * Author: Nikos Mavrogiannopoulos\n *\n * This file is part of GnuTLS.\n *\n * The GnuTLS is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public License\n * as published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>\n *\n */\n--------------------\n/*\n * Copyright (C) 2004-2015 Free Software Foundation, Inc.\n * Copyright (c) 2002 Andrew McDonald <andrew at mcdonald.org.uk>\n *\n * This file is part of GnuTLS-EXTRA.\n *\n * GnuTLS-extra is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * GnuTLS-extra is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n--------------------\n\nThe documentation is distributed under the terms of the GNU Free\nDocumentation License (FDL):\n--------------------\nCopyright (C) 2001-2023 Free Software Foundation, Inc.\nCopyright (C) 2001-2023 Nikos Mavrogiannopoulos\n\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n--------------------\n\n--------------------\nFrom December 2012 onwards FSF is not the sole copyright holder of GnuTLS\nanymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),\nthe headers currently also list these authors/copyright holders::\n* Adam Sampson\n* Alexander von Gernler\n* Andrew McDonald\n* ARPA2 project\n* Attila Molnar\n* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin\n* Brian Wickman\n* Canonical, Ltd.\n* Christian Grothoff\n* Daiki Ueno\n* David Woodhouse\n* Dmitry Eremin-Solenikov\n* Dyalog Ltd.\n* Fiona Klute\n* Frank Morgner\n* Fratni\u0161ek Kren\u017eelok\n* Guillaume Roguez\n* Hugo Beauz\u00e9e-Luyssen\n* IBM Corporation\n* INRIA Paris-Rocquencourt\n* Intel Corporation.\n* Joe Orton\n* Karl Tarbe\n* KU Leuven\n* Lucas Fisher\n* Markus Friedl\n* Michael Zucchi\n* Niels M\u00f6ller\n* Nikos Mavrogiannopoulos\n* Paul Sheer\n* Pierre Ossman\n* Red Hat, Inc.\n* Ruslan N. Marchenko\n* Sean Buckheister\n* Simon Josefsson\n* Stephan Mueller\n* The Pkcs11Interop Project\n* Thomas Klute\n* Tim Kosse\n* Tim R\u00fchsen\n* Tobias Heider\n* Tom Vrancken\n--------------------\n\n\n\nOn Debian GNU/Linux systems, the complete text of the latest version of\nthe GNU Lesser General Public License can be found in\n`/usr/share/common-licenses/LGPL' v3 of the license in\n`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can\nbe found in `/usr/share/common-licenses/GPL' (version 3 in\n/usr/share/common-licenses/GPL-3) The GNU Free Documentation\nLicense is available under /usr/share/common-licenses/GFDL-1.3.\n\n============================================\n\nExcerpt from upstream's README:\n\nLICENSING\n=========\n\nSince GnuTLS version 3.1.10, the core library has been released under\nthe GNU Lesser General Public License (LGPL) version 2.1 or later.\n\nNote, however, that version 6.0.0 and later of the gmplib library used\nby GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and\nas such binaries of this library need to adhere to either LGPLv3+ or\nGPLv2+ license.\n\n\n\n\nThe GNU LGPL applies to the main GnuTLS library, while the\nincluded applications as well as gnutls-openssl\nlibrary are under the GNU GPL version 3. The gnutls library is\nlocated in the lib/ and libdane/ directories, while the applications\nin src/ and, the gnutls-openssl library is at extra/.\n\nFor any copyright year range specified as YYYY-ZZZZ in this package\nnote that the range specifies every single year in that closed interval.\n============================================\n============================================\n\nNon FSF code\n\n============================================\n\nlib/accelerated/x86 contains code by Andy Polyakov <appro at openssl.org>,\ncopyright is not assigned to the FSF. The code is licensed under the\nCRYPTOGAMS license.\n\n--------------------\n# Copyright (c) 2011-2016, Andy Polyakov by <appro at openssl.org>\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# * Redistributions of source code must retain copyright notices,\n# this list of conditions and the following disclaimer.\n#\n# * Redistributions in binary form must reproduce the above\n# copyright notice, this list of conditions and the following\n# disclaimer in the documentation and/or other materials\n# provided with the distribution.\n#\n# * Neither the name of the Andy Polyakov nor the names of its\n# copyright holder and contributors may be used to endorse or\n# promote products derived from this software without specific\n# prior written permission.\n#\n# ALTERNATIVELY, provided that this notice is retained in full, this\n# product may be distributed under the terms of the GNU General Public\n# License (GPL), in which case the provisions of the GPL apply INSTEAD OF\n# those given above.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS\n# \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--------------------\n\n============================================\n\nlib/extras/randomart.*\n\n\nUpstream Authors: Markus Friedl\n Alexander von Gernler\n\nCopyright:\n * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.\n * Copyright (c) 2008 Alexander von Gernler. All rights reserved.\nLicense:\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n============================================\n\nlib/accelerated/x86/elf/aes-ssse3-x86.s\nlib/accelerated/x86/macosx/aes-ssse3-x86.s\n\nUpstream Authors: Mike Hamburg (Stanford University)\n\nCopyright:\n * Mike Hamburg (Stanford University), 2009.\nLicense:\n Public domain.\n\n============================================\n\nlib/system/inet_pton.c\n\nUpstream Authors: Internet Software Consortium\n\nCopyright/License:\n * Copyright (c) 1996,1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\n============================================\n\nlib/extras/hex.*\nAuthor: Rusty Russell <rusty at rustcorp.com.au>\nComment: http://ccodearchive.net/info/str/hex.html\nLicense: CC0 license\n Statement of Purpose\n\n The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\").\n\n Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.\n\n For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.\n\n 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following:\n\n the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;\n moral rights retained by the original author(s) and/or performer(s);\n publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;\n rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and\n other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.\n\n 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.\n\n 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.\n\n 4. Limitations and Disclaimers.\n\n No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.\n Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.\n Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.\n Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.\n\n============================================\n\ndoc/examples/tlsproxy/\nCopyright: Copyright (c) 2016 Wrymouth Innovation Ltd\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n============================================\n\nFiles: tests/pkcs11/pkcs11-mock.*\nCopyright: 2011-2016 The Pkcs11Interop Project\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\nX-Comment: Written originally for the Pkcs11Interop project by:\n Jaroslav IMRICH <jimrich at jimrich.sk>\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n============================================\n\nlib/unistring/*\nAuthor: Bruno Haible <bruno at clisp.org>\nCopyright (C) 2009-2020 Free Software Foundation, Inc.\nComment: Debian package is built against libunistring-dev package.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: fuzz/gnutls_base64_decoder_fuzzer.c\n fuzz/gnutls_base64_encoder_fuzzer.c\n fuzz/gnutls_ocsp_req_parser_fuzzer.c\n fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c\n fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c\nCopyright: 2017 Red Hat, Inc.\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\nfuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c\n fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c\n fuzz/gnutls_reverse_idna_parser_fuzzer.c\nCopyright 2016 Nikos Mavrogiannopoulos\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nfuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c\n fuzz/gnutls_x509_parser_fuzzer.c\nCopyright 2016 Google Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nFiles: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c\nCopyright: 2016 Google Inc.\n 2017 Red Hat, Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n\nFiles: fuzz/main.c\nCopyright: 2017 Tim Ruehsen\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n\nFiles: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h\n fuzz/gnutls_psk_server_fuzzer.c\n fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c\n fuzz/gnutls_srp_server_fuzzer.c\n fuzz/handshake.h\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c\nCopyright: 2017 Nikos Mavrogiannopoulos\n 2019 Tom Vrancken (dev at tomvrancken.nl)\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_x509_crq_parser_fuzzer.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPLv2.1+\n\nFiles: lib/compress.c\nCopyright: 2017-2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/compress.h lib/ext/compress_certificate.c\n lib/ext/compress_certificate.h tests/cipher-padding.c\n tests/ktls.sh tests/pkcs7-verify-double-free.c\nCopyright: 2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/backport/block-internal.h\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\n 2018 Red Hat, Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/init.c\nCopyright: 2010-2012 Free Software Foundation, Inc.\n 2022 Tobias Heider <tobias.heider at canonical.com>\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c\n lib/nettle/gost/magma.c\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h\n lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c\n lib/nettle/int/provable-prime.c\nCopyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h\nCopyright: 2013 2017 Red Hat\n 2008 Free Software Foundation, Inc.\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/rsa-keygen-fips186.c\nCopyright: 2002 Niels M\u00f6ller\n 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h\nCopyright: 2001 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/write-le32.c\nCopyright: 2001, 2011 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/block8.h\nCopyright: 2005, 2014 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/mpn-base256.c\n lib/nettle/int/mpn-base256.h\nCopyright: 2013 Niels M\u00f6ller\n 2013 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost28147.h\nCopyright: 2015 Dmitry Eremin-Solenikov\n 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog-meta.c\nCopyright: 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-gost.h\nCopyright: 2001, 2002 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-streebog.c\nCopyright: 2016 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/nettle-write.h\nCopyright: 2010 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.c\nCopyright: 2013-2015 Dmitry Eremin-Solenikov\nComment: Based on my code in libgcrypt.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.h\nCopyright: 2015 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h\n lib/nettle/gost/magma.h\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa2.h\nCopyright: 2015 Dmity Eremin-Solenikov\n 2013 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa-mask.c\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost-wrap.c\nCopyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nFiles: lib/nettle/gost/gost28147.c\nCopyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense:\n based on Russian standard GOST 28147-89\n * For English description, check RFC 5830.\n * S-Boxes are expanded from the tables defined in RFC4357:\n * https://tools.ietf.org/html/rfc4357\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/rnd-fuzzer.c\nCopyright 2017 Red Hat\n Copyright 1995-2017 Free Software Foundation, Inc.\nLicense\n * This file is part of the GNU C Library.\n * Contributed by Ulrich Drepper <drepper at gnu.ai.mit.edu>, August 1995.\n *\n * This file is part of GnuTLS.\n *\n * Libgcrypt is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * Libgcrypt is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this program; if not, see <http://www.gnu.org/licenses/>.\n\nFiles: lib/name_val_array.h\nLicense: LGPLv3+_or_GPLv2+\nCopyright: 2011-2019 Free Software Foundation, Inc.\n 2019 Red Hat, Inc\n\nLicense: LGPLv3+_or_GPLv2+\n * This program is free software: you can redistribute it and/or\n * modify it under the terms of either:\n *\n * * the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 3 of the License, or (at your\n * option) any later version.\n *\n * or\n *\n * * the GNU General Public License as published by the Free\n * Software Foundation; either version 2 of the License, or (at your\n * option) any later version.\n *\n * or both in parallel, as here.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * General Public License for more details.\n *\n * You should have received copies of the GNU General Public License and\n * the GNU Lesser General Public License along with this program. If\n * not, see http://www.gnu.org/licenses/.\n\nFiles: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk\nCopyright: 2021-2022 Daiki Ueno\nLicense: LGPLv2.1+\n\n\nFiles: tests/no-extensions.c tests/system-override-curves.sh\n tests/system-override-hash.c tests/resume-lifetime.c\n tests/system-override-kx.sh tests/system-override-profiles.sh\n tests/system-override-sig.c tests/system-override-sig-hash.sh\n tests/system-override-tls.sh tests/system-override-versions.sh\n tests/iov.c tests/tls13-without-timeout-func.c\n tests/cert-tests/certtool-crl-decoding.sh\n tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh\n tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh\n tests/ciphersuite-name.c\n tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh\n tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh\n tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh\n tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh\n tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh\n tests/fips-rsa-sizes.c\n tests/ocsp-tests/ocsp-load-chain.sh\n tests/ocsp-tests/ocsp-must-staple-connection.sh\n tests/ocsp-tests/ocsptool.sh\n tests/tls13/compress-cert-cli.c\n tests/tls13/hello_retry_request_resume.c\n tests/client-secrets.h\n tests/sanity-lib.sh\n tests/server-secrets.h\n tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c\n tests/tls13/compress-cert-neg.c\n tests/tls13/psk-ke-modes.c\nLicense: GPLv3+\nCopyright: 2014-2022 Red Hat, Inc\n\nFiles: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh\n tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh\n tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh\n tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh\n tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh\n tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh\n tests/cert-tests/provable-privkey-dsa2048.sh\n tests/cert-tests/provable-privkey-gen-default.sh\n tests/cert-tests/provable-privkey-rsa2048.sh\n tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n\nFiles: tests/openconnect-dtls12.c tests/system-override-invalid.sh\n tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh\nLicense: GPLv3+\nCopyright: 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-ok.c\nLicense: GPLv3+\nCopyright: 2016-2019 Tim Kosse\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-missing.c\nLicense: GPLv3+\nCopyright: 2016 Tim Kosse\n\nFiles: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh\n tests/cert-tests/reject-invalid-time.sh\n tests/cert-tests/tolerate-invalid-time.sh\n tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh\n tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c\n tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh\n tests/dtls/dtls-resume.sh\nLicense: GPLv3+\nCopyright: 2016-2017 Red Hat, Inc.\n\nFiles: tests/kdf-api.c\nLicense: LGPLv2.1+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: lib/fipshmac.c\nLicense: LGPLv2.1+\nCopyright: 2020-2022 Red Hat, Inc.\n\nFiles: tests/missingissuer_aia.c tests/missingissuer.c\nLicense: GPLv3+\nCopyright: 2008-2014 Free Software Foundation, Inc.\n\nFiles: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h\n tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh\n tests/cert-tests/pkcs12-encode.sh\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2016 2017 Red Hat, Inc.\n\nFiles: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c\nLicense: GPLv3+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: tests/status-request-revoked.c tests/cert-tests/certtool.sh\n tests/cert-tests/pkcs7.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n 2018 2020 Red Hat, Inc.\n\nFiles: tests/resume-with-record-size-limit.c\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2016-2019 Red Hat, Inc.\n\nFiles: tests/cipher-alignment.c\nLicense: GPLv3+\nCopyright: 2004-2015 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2015 Red Hat, Inc\n\nFiles: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh\n tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh\nLicense: GPLv3+\nCopyright: 2015 Red Hat, Inc.\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/x509-upnconstraint.c\nLicense: GPLv3+\nCopyright: 2022 Brian Wickman\n\nFiles: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c\nLicense: GPLv3+\nCopyright: 2017-2019 Red Hat, Inc.\n\nFiles: tests/tls13/no-auto-send-ticket.c\nLicense: GPLv3+\nCopyright: 2017-2020 Red Hat, Inc.\n\nFiles: tests/sign-verify-newapi.c\nLicense: GPLv3+\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2017-2019 Red Hat, Inc.\n\nFiles: tests/buffer.c\nLicense: GPLv3+\nCopyright: 2019 Tim R\u00fchsen\n\nFiles: tests/gnutls-cli-rawpk.sh\nLicense: GPLv3+\nCopyright: 2019 Tom Vrancken (dev at tomvrancken.nl)\n\nFiles: tests/system-override-default-priority-string.sh\nLicense: GPLv3+\nCopyright: 2019 Canonical, Ltd.\n\nFiles: tests/x509cert-dntypes.c\nLicense: GPLv3+\nCopyright: 2020 Pierre Ossman for Cendio AB\n\nFiles: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c\nLicense: LGPLv2.1+\nCopyright: 2019 Red Hat, Inc.\n\nFiles: tests/pskself2.c\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2019 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs12-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2016 Red Hat, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs7-list-sign.sh\nCopyright: 2017 Karl Tarbe\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs8-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2004-2006, 2010, 2012 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/id-on-xmppAddr.c\nCopyright: 2021 Steffen Jaeckel\nLicense: GPLv3+\n\nFiles: tests/ocsp-tests/ocsp-tls-connection.sh\nCopyright: 2016 Thomas Klute\nLicense: GPLv3+\n\nFiles: tests/tls-channel-binding.c\nCopyright: 2021 Ruslan N. Marchenko\nLicense: GPLv3+\n\nFiles: lib/accelerated/afalg.c\nCopyright: 2017 Stephan Mueller <smueller at chronox.de>\nLicense: LGPLv2.1+\n\n\nFiles: lib/inih/*\nCopyright: 2009-2019, Ben Hoyt\nLicense: BSD-3-Clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Ben Hoyt nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nComment: https://github.com/benhoyt/inih\n~\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "LGPLv3+_or_GPLv2+",
+ "text": {
+ "content": "This package was debianized by Ivo Timmermans <ivo at debian.org> on\nFri, 3 Aug 2001 10:00:42 +0200.\nIt was later taken over by Matthias Urlichs <smurf at debian.org> and is now\nmaintained by Andreas Metzler <ametzler at debian.org> Eric Dorland\n<eric at debian.org>, James Westby <jw+debian at jameswestby.net>\n\n\nIt was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/\n\nUpstream Authors (from AUTHORS file):\n8X------------------------------------\nThe authors list is autogenerated from the git history; sorted by number of commits\n\nNikos Mavrogiannopoulos <nmav at gnutls.org>\nSimon Josefsson <jas at josefsson.org>\nDaiki Ueno <ueno at gnu.org>\nDmitry Baryshkov <dbaryshkov at gmail.com>\nTim R\u00fchsen <tim.ruehsen at gmx.de>\nLudovic Court\u00e8s <ludo at gnu.org>\nTimo Schulz <twoaday at gnutls.org>\nJonathan Bastien-Filiatrault <joe at x2a.org>\nAndreas Metzler <ametzler at debian.org>\nAlon Bar-Lev <alon.barlev at gmail.com>\nAlexander Sosedkin <asosedkin at redhat.com>\nDaniel Kahn Gillmor <dkg at fifthhorseman.net>\nTom Vrancken <dev at tomvrancken.nl>\nZoltan Fridrich <zfridric at redhat.com>\nMartin Storsjo <martin at martin.st>\nTim Kosse <tim.kosse at filezilla-project.org>\nSimo Sorce <simo at redhat.com>\nFabian Keil <fk at fabiankeil.de>\nFabio Fiorina <fiorinaf at gnutls.org>\nStef Walter <stefw at redhat.com>\nAnderson Toshiyuki Sasaki <ansasaki at redhat.com>\nArmin Burgmeier <armin at arbur.net>\nFranti\u0161ek Kren\u017eelok <krenzelok.frantisek at gmail.com>\nAndrew McDonald <admcd at gnutls.org>\nFiona Klute <fiona.klute at gmx.de>\nAlex Gaynor <alex.gaynor at gmail.com>\nAnder Juaristi <a at juaristi.eus>\nMartin Ukrop <mukrop at redhat.com>\nJaak Ristioja <jaak.ristioja at cyber.ee>\nAttila Molnar <attilamolnar at hush.com>\nHugo Beauz\u00e9e-Luyssen <hugo at beauzee.fr>\nStefan Berger <stefanb at linux.ibm.com>\nSteve Lhomme <robux4 at ycbcr.xyz>\nJakub Jelen <jjelen at redhat.com>\nMartin Sucha <anty.sk+git at gmail.com>\nDavid Woodhouse <dwmw2 at infradead.org>\nJan Vcelak <jan.vcelak at nic.cz>\nKevin Cernekee <cernekee at gmail.com>\nNikolay Sivov <nsivov at codeweavers.com>\nSahana Prasad <sahana at redhat.com>\nMichael Catanzaro <mcatanzaro at gnome.org>\nDaniel Lenski <dlenski at gmail.com>\nJonasZhou <JonasZhou at zhaoxin.com>\nStefan S\u00f8rensen <stefan.sorensen at spectralink.com>\nTobias Heider <tobias.heider at canonical.com>\nAdam Sampson <ats at offog.org>\nAlfredo Pironti <alfredo at pironti.eu>\nBrad Hards <bradh at frogmouth.net>\nDimitri John Ledkov <xnox at ubuntu.com>\nHubert Kario <hkario at redhat.com>\nMichael Weiser <michael.weiser at gmx.de>\nPatrick Pelletier <code at funwithsoftware.org>\nRolf Eike Beer <eike at sf-mail.de>\nRuslan N. Marchenko <me at ruff.mobi>\nSjoerd Simons <sjoerd.simons at collabora.co.uk>\nStefan B\u00fchler <stbuehler at web.de>\nThomas Klute <thomas2.klute at uni-dortmund.de>\nWolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>\nChristian Grothoff <christian at grothoff.org>\nDaniel P. Berrange <berrange at redhat.com>\nEvgeny Grin <k2k at narod.ru>\nGustavo Zacarias <gustavo at zacarias.com.ar>\nJames Bottomley <James.Bottomley at HansenPartnership.com>\nJi\u0159\u00ed Klime\u0161 <jklimes at redhat.com>\nKarsten Ohme <k_o_ at users.sourceforge.net>\nKurt Roeckx <kurt at roeckx.be>\nPeter Wu <peter at lekensteyn.nl>\nStanislav Zidek <szidek at redhat.com>\nStephan Mueller <smueller at chronox.de>\nThierry Quemerais <tquemerais at awox.com>\nTom Carroll <incentivedesign at gmail.com>\nVitezslav Cizek <vcizek at suse.com>\nAlessandro Ghedini <alessandro at ghedini.me>\nAlex Monk <krenair at gmail.com>\nBenjamin Herrenschmidt <benh at kernel.crashing.org>\nBernhard M. Wiedemann <bwiedemann at suse.de>\nCraig Gallek <cgallek at gmail.com>\nDavid Caldwell <david at porkrind.org>\nDiego Elio Petten\u00f2 <flameeyes at flameeyes.eu>\nElta Koepp <alexi_2019 at protonmail.com>\nFabrice Fontaine <fontaine.fabrice at gmail.com>\nGiuseppe Scrivano <gscrivano at gnu.org>\nIlya Tumaykin <itumaykin at gmail.com>\nKarl Tarbe <karl.tarbe at cyber.ee>\nKe Zhao <kzhao at redhat.com>\nLeonardo Bras <leobras.c at gmail.com>\nMark Brand <mabrand at mabrand.nl>\nMatthias-Christian Ott <ott at mirix.org>\nMaya Rashish <coypu at sdf.org>\nMichael Catanzaro <mcatanzaro at igalia.com>\nMicha\u0142 G\u00f3rny <mgorny at gentoo.org>\nMiroslav Lichvar <mlichvar at redhat.com>\nPedro Monreal <pmgdeb at gmail.com>\nPedro Monreal <pmonrealgonzalez at suse.de>\nPetr P\u00edsa\u0159 <petr.pisar at atlas.cz>\nPierre Ossman <ossman at cendio.se>\nRoman Bogorodskiy <bogorodskiy at gmail.com>\nSam James <sam at gentoo.org>\nSimon South <simon at simonsouth.net>\nSteffen Jaeckel <jaeckel-floss at eyet-services.de>\nSteve Dispensa <dispensa at phonefactor.com>\nnia <nia at NetBSD.org>\nraspa0 <raspa0 at protonmail.com>\nAlban Crequy <alban.crequy at collabora.co.uk>\nAlbrecht Dre\u00df <albrecht.dress at arcor.de>\nAleksei Nikiforov <darktemplar at basealt.ru>\nAlexander Kanavin <alex.kanavin at gmail.com>\nAlexandre Bique <bique.alexandre at gmail.com>\nAndreas Schneider <asn at samba.org>\nAndreas Schwab <schwab at suse.de>\nAsad Mehmood <asad78611 at googlemail.com>\nAvinash Sonawane <rootkea at gmail.com>\nBas van Schaik <gitlab.com at s.traiectum.net>\nBjoern Jacke <bjacke at samba.org>\nBj\u00f6rn Jacke <bjacke at samba.org>\nBj\u00f8rn Christensen <bhc at insight.dk>\nBrad Smith <brad at comstyle.com>\nBrian Wickman <bwickman97 at outlook.com>\nCarolin Latze <latze at angry-red-pla.net>\nChen Hongzhi <hongzhi.chen at me.com>\nChris Barry <chris at barry.im>\nColin Walters <walters at verbum.org>\nDan Fandrich <dan at coneharvesters.com>\nDaniel Schaefer <git at danielschaefer.me>\nDavid Walker <david.walker at vcatechnology.com>\nDavid Weber <dave at veryflatcat.com>\nDimitris Apostolou <dimitris.apostolou at icloud.com>\nDmitriy Tsvettsikh <dmitrycvet at gmail.com>\nDosenpfand <m at sad.bz>\nDoug Nazar <nazard at nazar.ca>\nEdward Stangler <estangler at bradmark.com>\nElias Pipping <pipping at exherbo.org>\nElta Koepp <elta_koepp at gmail.com>\nFrank Morgner <morgner at informatik.hu-berlin.de>\nGregor Jasny <gjasny at googlemail.com>\nG\u00fcnther Deschner <gd at samba.org>\nHani Benhabiles <kroosec at gmail.com>\nHannes Reinecke <hare at suse.de>\nHans Leidekker <hans at codeweavers.com>\nIlya V. Matveychikov <i.matveychikov at securitycode.ru>\nJan Palus <jpalus at fastmail.com>\nJared Wong <jaredlwong at gmail.com>\nJason Spafford <nullprogrammer at gmail.com>\nJay Foad <jay.foad at gmail.com>\nJeffrey Walton <noloader at gmail.com>\nJens Lechtenboerger <jens.lechtenboerger at fsfe.org>\nJussi Kukkonen <jussi.kukkonen at intel.com>\nKenneth J. Miller <ken at miller.ec>\nLei Maohui <leimaohui at cn.fujitsu.com>\nLili Quan <13132239506 at 163.com>\nLucas Fisher <lucas.fisher at gmail.com>\nLudwig Nussel <ludwig.nussel at suse.de>\nLuis G.F <luisgf at gmail.com>\nLuke Dashjr <luke-jr+git at utopios.org>\nMaciej S. Szmigiero <mail at maciej.szmigiero.name>\nMaks Naumov <maksqwe1 at ukr.net>\nMarcin Cie\u015blak <saper at saper.info>\nMarcus Meissner <meissner at suse.de>\nMarga Manterola <marga at google.com>\nMarius Bakke <mbakke at fastmail.com>\nMarti Raudsepp <marti at juffo.org>\nMarvin Scholz <epirat07 at gmail.com>\nMatt Turner <mattst88 at gmail.com>\nMatt Whitlock <matt at whitlock.name>\nMicah Anderson <micah at riseup.net>\nMichael Catanzaro <mcatanzaro at redhat.com>\nNick Alcock <nick.alcock at oracle.com>\nNick Child <nick.child at ibm.com>\nNicolas Dufresne <nicolas.dufresne at collabora.com>\nNils Maier <maierman at web.de>\nNorbert Pocs <npocs at redhat.com>\nOlga <olyasib12 at gmail.com>\nOndrej Moris <omoris at redhat.com>\nPetr Pavlu <petr.pavlu at suse.com>\nPhilippe Proulx <eeppeliteloop at gmail.com>\nPhilippe Widmer <pw at earthwave.ch>\nR. Andrew Bailey <bailey at akamai.com>\nRaj Raman <rajramanca at gmail.com>\nRemi Olivier <remi_8 at hotmail.com>\nRical Jasan <ricaljasan at pacific.net>\nRicardo M. Correia <rcorreia at wizy.org>\nRichard Costa <richard.costa at suse.com>\nRickard Bellgrim <rickard at opendnssec.org>\nRobert Scheck <robert at fedoraproject.org>\nRoberto Newmon <robertonewmon at fake-box.com>\nRoss Nicholson <phunkyfish at gmail.com>\nRowan Thorpe <rowan at rowanthorpe.com>\nSUMIT AGGARWAL <aggarwal.s at samsung.com>\nSadie Powell <sadie at witchery.services>\nSaurav Babu <saurav.babu at samsung.com>\nSebastian Dr\u00f6ge <sebastian at centricular.com>\nSeppo Yli-Olli <seppo.yliolli at gmail.com>\nSimon Arlott <sa.me.uk>\nTatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>\nThomas Klausner <wiz at NetBSD.org>\nTobias Polzer <tobias.polzer at fau.de>\nTomas Hoger <thoger at redhat.com>\nTomas Mraz <tmraz at fedoraproject.org>\nTristan Matthews <le.businessman at gmail.com>\nWerner Koch <wk at gnupg.org>\nYuriy M. Kaminskiy <yumkam at gmail.com>\nihsinme <ihsinme at gmail.com>\nrrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>\nsskaje <sskaje at gmail.com>\n\u0141ukasz Stelmach <stlman at poczta.fm>\n\n\nThe translators list is autogenerated from po file history\n\nAnders Jonsson\nBenno Schulenberg\nCristian Oth\u00f3n Mart\u00ednez Vera\nFelipe Castro\nJakub Bogusz\nJorma Karvonen\nMario Bl\u00e4ttermann\nMilo Casagrande\nMingye Wang (Arthur2e5)\nPetr Pisar\nRafael Fontenelle\nRemus-Gabriel Chelu\nSharuzzaman Ahmat Raslan\nSt\u00e9phane Aulery\nTemuri Doghonadze\nTr\u1ea7n Ng\u1ecdc Qu\u00e2n\nYuri Chornoivan\n\u041c\u0438\u0440\u043e\u0441\u043b\u0430\u0432 \u041d\u0438\u043a\u043e\u043b\u0438\u045b\n8X------------------------------------\n\nLicense: The main library is licensed under GNU Lesser\nGeneral Public License (LGPL) version 2.1+, Gnutls Extra (which is currently\njust the openssl wrapper library), build system, testsuite and commandline\nutilities are licenced under the GNU General Public License version 3+. The\nGuile bindings use the same license as the respective underlying library,\ni.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.\n\nHowever to be able to use and link against libgnutls a program needs to be\navailable under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS\nrequires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed\nLGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also\nis dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier\nversion were LGPLv3+ only.)\n\nCopyright:\n--------------------\n/* -*- c -*-\n * Copyright (C) 2000-2019 Free Software Foundation, Inc.\n *\n * Author: Nikos Mavrogiannopoulos\n *\n * This file is part of GnuTLS.\n *\n * The GnuTLS is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public License\n * as published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>\n *\n */\n--------------------\n/*\n * Copyright (C) 2004-2015 Free Software Foundation, Inc.\n * Copyright (c) 2002 Andrew McDonald <andrew at mcdonald.org.uk>\n *\n * This file is part of GnuTLS-EXTRA.\n *\n * GnuTLS-extra is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * GnuTLS-extra is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n--------------------\n\nThe documentation is distributed under the terms of the GNU Free\nDocumentation License (FDL):\n--------------------\nCopyright (C) 2001-2023 Free Software Foundation, Inc.\nCopyright (C) 2001-2023 Nikos Mavrogiannopoulos\n\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n--------------------\n\n--------------------\nFrom December 2012 onwards FSF is not the sole copyright holder of GnuTLS\nanymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),\nthe headers currently also list these authors/copyright holders::\n* Adam Sampson\n* Alexander von Gernler\n* Andrew McDonald\n* ARPA2 project\n* Attila Molnar\n* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin\n* Brian Wickman\n* Canonical, Ltd.\n* Christian Grothoff\n* Daiki Ueno\n* David Woodhouse\n* Dmitry Eremin-Solenikov\n* Dyalog Ltd.\n* Fiona Klute\n* Frank Morgner\n* Fratni\u0161ek Kren\u017eelok\n* Guillaume Roguez\n* Hugo Beauz\u00e9e-Luyssen\n* IBM Corporation\n* INRIA Paris-Rocquencourt\n* Intel Corporation.\n* Joe Orton\n* Karl Tarbe\n* KU Leuven\n* Lucas Fisher\n* Markus Friedl\n* Michael Zucchi\n* Niels M\u00f6ller\n* Nikos Mavrogiannopoulos\n* Paul Sheer\n* Pierre Ossman\n* Red Hat, Inc.\n* Ruslan N. Marchenko\n* Sean Buckheister\n* Simon Josefsson\n* Stephan Mueller\n* The Pkcs11Interop Project\n* Thomas Klute\n* Tim Kosse\n* Tim R\u00fchsen\n* Tobias Heider\n* Tom Vrancken\n--------------------\n\n\n\nOn Debian GNU/Linux systems, the complete text of the latest version of\nthe GNU Lesser General Public License can be found in\n`/usr/share/common-licenses/LGPL' v3 of the license in\n`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can\nbe found in `/usr/share/common-licenses/GPL' (version 3 in\n/usr/share/common-licenses/GPL-3) The GNU Free Documentation\nLicense is available under /usr/share/common-licenses/GFDL-1.3.\n\n============================================\n\nExcerpt from upstream's README:\n\nLICENSING\n=========\n\nSince GnuTLS version 3.1.10, the core library has been released under\nthe GNU Lesser General Public License (LGPL) version 2.1 or later.\n\nNote, however, that version 6.0.0 and later of the gmplib library used\nby GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and\nas such binaries of this library need to adhere to either LGPLv3+ or\nGPLv2+ license.\n\n\n\n\nThe GNU LGPL applies to the main GnuTLS library, while the\nincluded applications as well as gnutls-openssl\nlibrary are under the GNU GPL version 3. The gnutls library is\nlocated in the lib/ and libdane/ directories, while the applications\nin src/ and, the gnutls-openssl library is at extra/.\n\nFor any copyright year range specified as YYYY-ZZZZ in this package\nnote that the range specifies every single year in that closed interval.\n============================================\n============================================\n\nNon FSF code\n\n============================================\n\nlib/accelerated/x86 contains code by Andy Polyakov <appro at openssl.org>,\ncopyright is not assigned to the FSF. The code is licensed under the\nCRYPTOGAMS license.\n\n--------------------\n# Copyright (c) 2011-2016, Andy Polyakov by <appro at openssl.org>\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# * Redistributions of source code must retain copyright notices,\n# this list of conditions and the following disclaimer.\n#\n# * Redistributions in binary form must reproduce the above\n# copyright notice, this list of conditions and the following\n# disclaimer in the documentation and/or other materials\n# provided with the distribution.\n#\n# * Neither the name of the Andy Polyakov nor the names of its\n# copyright holder and contributors may be used to endorse or\n# promote products derived from this software without specific\n# prior written permission.\n#\n# ALTERNATIVELY, provided that this notice is retained in full, this\n# product may be distributed under the terms of the GNU General Public\n# License (GPL), in which case the provisions of the GPL apply INSTEAD OF\n# those given above.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS\n# \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--------------------\n\n============================================\n\nlib/extras/randomart.*\n\n\nUpstream Authors: Markus Friedl\n Alexander von Gernler\n\nCopyright:\n * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.\n * Copyright (c) 2008 Alexander von Gernler. All rights reserved.\nLicense:\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n============================================\n\nlib/accelerated/x86/elf/aes-ssse3-x86.s\nlib/accelerated/x86/macosx/aes-ssse3-x86.s\n\nUpstream Authors: Mike Hamburg (Stanford University)\n\nCopyright:\n * Mike Hamburg (Stanford University), 2009.\nLicense:\n Public domain.\n\n============================================\n\nlib/system/inet_pton.c\n\nUpstream Authors: Internet Software Consortium\n\nCopyright/License:\n * Copyright (c) 1996,1999 by Internet Software Consortium.\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n * SOFTWARE.\n\n============================================\n\nlib/extras/hex.*\nAuthor: Rusty Russell <rusty at rustcorp.com.au>\nComment: http://ccodearchive.net/info/str/hex.html\nLicense: CC0 license\n Statement of Purpose\n\n The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\").\n\n Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.\n\n For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.\n\n 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following:\n\n the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;\n moral rights retained by the original author(s) and/or performer(s);\n publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;\n rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and\n other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.\n\n 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.\n\n 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.\n\n 4. Limitations and Disclaimers.\n\n No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.\n Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.\n Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.\n Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.\n\n============================================\n\ndoc/examples/tlsproxy/\nCopyright: Copyright (c) 2016 Wrymouth Innovation Ltd\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\n\n============================================\n\nFiles: tests/pkcs11/pkcs11-mock.*\nCopyright: 2011-2016 The Pkcs11Interop Project\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\nX-Comment: Written originally for the Pkcs11Interop project by:\n Jaroslav IMRICH <jimrich at jimrich.sk>\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n============================================\n\nlib/unistring/*\nAuthor: Bruno Haible <bruno at clisp.org>\nCopyright (C) 2009-2020 Free Software Foundation, Inc.\nComment: Debian package is built against libunistring-dev package.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: fuzz/gnutls_base64_decoder_fuzzer.c\n fuzz/gnutls_base64_encoder_fuzzer.c\n fuzz/gnutls_ocsp_req_parser_fuzzer.c\n fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c\n fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c\nCopyright: 2017 Red Hat, Inc.\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\nfuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c\n fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c\n fuzz/gnutls_reverse_idna_parser_fuzzer.c\nCopyright 2016 Nikos Mavrogiannopoulos\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nfuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c\n fuzz/gnutls_x509_parser_fuzzer.c\nCopyright 2016 Google Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n\n\nFiles: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c\nCopyright: 2016 Google Inc.\n 2017 Red Hat, Inc.\nComment: On Debian systems the complete license text is available in\n /usr/share/common-licenses/Apache-2.0\nLicense: Apache-2.0\n On Debian systems the complete text of the license can be found in\n /usr/share/common-licenses/Apache-2.0\n\n\nFiles: fuzz/main.c\nCopyright: 2017 Tim Ruehsen\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\n\nFiles: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h\n fuzz/gnutls_psk_server_fuzzer.c\n fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c\n fuzz/gnutls_srp_server_fuzzer.c\n fuzz/handshake.h\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c\nCopyright: 2017 Nikos Mavrogiannopoulos\n 2019 Tom Vrancken (dev at tomvrancken.nl)\nLicense: Expat\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n * DEALINGS IN THE SOFTWARE.\n\nFiles: fuzz/gnutls_x509_crq_parser_fuzzer.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPLv2.1+\n\nFiles: lib/compress.c\nCopyright: 2017-2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/compress.h lib/ext/compress_certificate.c\n lib/ext/compress_certificate.h tests/cipher-padding.c\n tests/ktls.sh tests/pkcs7-verify-double-free.c\nCopyright: 2022 Red Hat, Inc.\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/backport/block-internal.h\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\n 2018 Red Hat, Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/init.c\nCopyright: 2010-2012 Free Software Foundation, Inc.\n 2022 Tobias Heider <tobias.heider at canonical.com>\nLicense: LGPLv2.1+\n\nFiles: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c\n lib/nettle/gost/magma.c\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h\n lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c\n lib/nettle/int/provable-prime.c\nCopyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h\nCopyright: 2013 2017 Red Hat\n 2008 Free Software Foundation, Inc.\nLicense: LGPLv3+_or_GPLv2+\n\n\nFiles: lib/nettle/int/rsa-keygen-fips186.c\nCopyright: 2002 Niels M\u00f6ller\n 2014 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h\nCopyright: 2001 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/write-le32.c\nCopyright: 2001, 2011 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/block8.h\nCopyright: 2005, 2014 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/int/mpn-base256.c\n lib/nettle/int/mpn-base256.h\nCopyright: 2013 Niels M\u00f6ller\n 2013 Red Hat\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost28147.h\nCopyright: 2015 Dmitry Eremin-Solenikov\n 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog-meta.c\nCopyright: 2012 Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-gost.h\nCopyright: 2001, 2002 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/hmac-streebog.c\nCopyright: 2016 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/nettle-write.h\nCopyright: 2010 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.c\nCopyright: 2013-2015 Dmitry Eremin-Solenikov\nComment: Based on my code in libgcrypt.\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/streebog.h\nCopyright: 2015 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h\n lib/nettle/gost/magma.h\nCopyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa2.h\nCopyright: 2015 Dmity Eremin-Solenikov\n 2013 Niels M\u00f6ller\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gostdsa-mask.c\nCopyright: 2018 Dmitry Eremin-Solenikov\nLicense: LGPLv3+_or_GPLv2+\n\nFiles: lib/nettle/gost/gost-wrap.c\nCopyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: LGPLv3+_or_GPLv2+\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nFiles: lib/nettle/gost/gost28147.c\nCopyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense:\n based on Russian standard GOST 28147-89\n * For English description, check RFC 5830.\n * S-Boxes are expanded from the tables defined in RFC4357:\n * https://tools.ietf.org/html/rfc4357\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFiles: lib/nettle/rnd-fuzzer.c\nCopyright 2017 Red Hat\n Copyright 1995-2017 Free Software Foundation, Inc.\nLicense\n * This file is part of the GNU C Library.\n * Contributed by Ulrich Drepper <drepper at gnu.ai.mit.edu>, August 1995.\n *\n * This file is part of GnuTLS.\n *\n * Libgcrypt is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * Libgcrypt is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this program; if not, see <http://www.gnu.org/licenses/>.\n\nFiles: lib/name_val_array.h\nLicense: LGPLv3+_or_GPLv2+\nCopyright: 2011-2019 Free Software Foundation, Inc.\n 2019 Red Hat, Inc\n\nLicense: LGPLv3+_or_GPLv2+\n * This program is free software: you can redistribute it and/or\n * modify it under the terms of either:\n *\n * * the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 3 of the License, or (at your\n * option) any later version.\n *\n * or\n *\n * * the GNU General Public License as published by the Free\n * Software Foundation; either version 2 of the License, or (at your\n * option) any later version.\n *\n * or both in parallel, as here.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * General Public License for more details.\n *\n * You should have received copies of the GNU General Public License and\n * the GNU Lesser General Public License along with this program. If\n * not, see http://www.gnu.org/licenses/.\n\nFiles: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk\nCopyright: 2021-2022 Daiki Ueno\nLicense: LGPLv2.1+\n\n\nFiles: tests/no-extensions.c tests/system-override-curves.sh\n tests/system-override-hash.c tests/resume-lifetime.c\n tests/system-override-kx.sh tests/system-override-profiles.sh\n tests/system-override-sig.c tests/system-override-sig-hash.sh\n tests/system-override-tls.sh tests/system-override-versions.sh\n tests/iov.c tests/tls13-without-timeout-func.c\n tests/cert-tests/certtool-crl-decoding.sh\n tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh\n tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh\n tests/ciphersuite-name.c\n tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh\n tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh\n tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh\n tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh\n tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh\n tests/fips-rsa-sizes.c\n tests/ocsp-tests/ocsp-load-chain.sh\n tests/ocsp-tests/ocsp-must-staple-connection.sh\n tests/ocsp-tests/ocsptool.sh\n tests/tls13/compress-cert-cli.c\n tests/tls13/hello_retry_request_resume.c\n tests/client-secrets.h\n tests/sanity-lib.sh\n tests/server-secrets.h\n tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c\n tests/tls13/compress-cert-neg.c\n tests/tls13/psk-ke-modes.c\nLicense: GPLv3+\nCopyright: 2014-2022 Red Hat, Inc\n\nFiles: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh\n tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh\n tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh\n tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh\n tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh\n tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh\n tests/cert-tests/provable-privkey-dsa2048.sh\n tests/cert-tests/provable-privkey-gen-default.sh\n tests/cert-tests/provable-privkey-rsa2048.sh\n tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n\nFiles: tests/openconnect-dtls12.c tests/system-override-invalid.sh\n tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh\nLicense: GPLv3+\nCopyright: 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-ok.c\nLicense: GPLv3+\nCopyright: 2016-2019 Tim Kosse\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/rfc7633-missing.c\nLicense: GPLv3+\nCopyright: 2016 Tim Kosse\n\nFiles: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh\n tests/cert-tests/reject-invalid-time.sh\n tests/cert-tests/tolerate-invalid-time.sh\n tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh\n tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c\n tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh\n tests/dtls/dtls-resume.sh\nLicense: GPLv3+\nCopyright: 2016-2017 Red Hat, Inc.\n\nFiles: tests/kdf-api.c\nLicense: LGPLv2.1+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: lib/fipshmac.c\nLicense: LGPLv2.1+\nCopyright: 2020-2022 Red Hat, Inc.\n\nFiles: tests/missingissuer_aia.c tests/missingissuer.c\nLicense: GPLv3+\nCopyright: 2008-2014 Free Software Foundation, Inc.\n\nFiles: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h\n tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh\n tests/cert-tests/pkcs12-encode.sh\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2016 2017 Red Hat, Inc.\n\nFiles: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c\nLicense: GPLv3+\nCopyright: 2020 Red Hat, Inc.\n\nFiles: tests/status-request-revoked.c tests/cert-tests/certtool.sh\n tests/cert-tests/pkcs7.sh\nLicense: GPLv3+\nCopyright: 2014-2018 Nikos Mavrogiannopoulos\n 2018 2020 Red Hat, Inc.\n\nFiles: tests/resume-with-record-size-limit.c\nLicense: GPLv3+\nCopyright: 2004-2016 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2016-2019 Red Hat, Inc.\n\nFiles: tests/cipher-alignment.c\nLicense: GPLv3+\nCopyright: 2004-2015 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2015 Red Hat, Inc\n\nFiles: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh\n tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh\nLicense: GPLv3+\nCopyright: 2015 Red Hat, Inc.\n 2019 Nikos Mavrogiannopoulos\n\nFiles: tests/x509-upnconstraint.c\nLicense: GPLv3+\nCopyright: 2022 Brian Wickman\n\nFiles: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c\nLicense: GPLv3+\nCopyright: 2017-2019 Red Hat, Inc.\n\nFiles: tests/tls13/no-auto-send-ticket.c\nLicense: GPLv3+\nCopyright: 2017-2020 Red Hat, Inc.\n\nFiles: tests/sign-verify-newapi.c\nLicense: GPLv3+\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2017-2019 Red Hat, Inc.\n\nFiles: tests/buffer.c\nLicense: GPLv3+\nCopyright: 2019 Tim R\u00fchsen\n\nFiles: tests/gnutls-cli-rawpk.sh\nLicense: GPLv3+\nCopyright: 2019 Tom Vrancken (dev at tomvrancken.nl)\n\nFiles: tests/system-override-default-priority-string.sh\nLicense: GPLv3+\nCopyright: 2019 Canonical, Ltd.\n\nFiles: tests/x509cert-dntypes.c\nLicense: GPLv3+\nCopyright: 2020 Pierre Ossman for Cendio AB\n\nFiles: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c\nLicense: LGPLv2.1+\nCopyright: 2019 Red Hat, Inc.\n\nFiles: tests/pskself2.c\nCopyright: 2004-2012 Free Software Foundation, Inc.\n 2013 Adam Sampson <ats at offog.org>\n 2019 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs12-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2016 Red Hat, Inc.\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs7-list-sign.sh\nCopyright: 2017 Karl Tarbe\nLicense: GPLv3+\n\nFiles: tests/cert-tests/pkcs8-gost.sh\nCopyright: 2018 Dmitry Eremin-Solenikov\n 2004-2006, 2010, 2012 Free Software Foundation, Inc.\nLicense: GPLv3+\n\nFiles: tests/id-on-xmppAddr.c\nCopyright: 2021 Steffen Jaeckel\nLicense: GPLv3+\n\nFiles: tests/ocsp-tests/ocsp-tls-connection.sh\nCopyright: 2016 Thomas Klute\nLicense: GPLv3+\n\nFiles: tests/tls-channel-binding.c\nCopyright: 2021 Ruslan N. Marchenko\nLicense: GPLv3+\n\nFiles: lib/accelerated/afalg.c\nCopyright: 2017 Stephan Mueller <smueller at chronox.de>\nLicense: LGPLv2.1+\n\n\nFiles: lib/inih/*\nCopyright: 2009-2019, Ben Hoyt\nLicense: BSD-3-Clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Ben Hoyt nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\nComment: https://github.com/benhoyt/inih\n~\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
}
],
"purl": "pkg:deb/debian/libgnutls30 at 3.7.9-2+deb12u3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
@@ -3622,6 +10439,34 @@
"content": "89944ee11d7370ce6ef46fc52f094c4a6512eff8943ec4c6ebefeae6360ceada"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.1-or-later OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "g10-permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgpg-error0 at 1.46-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3638,6 +10483,34 @@
"content": "6631304ce4b5b9ba0af3fdebf088a734aed2d28ffad2a03ba79e4fcb2e226dd6"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.1-or-later OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "g10-permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgssapi-krb5-2 at 1.20.1-2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3654,6 +10527,59 @@
"content": "ed8185c28b2cb519744a5a462dcd720d3b332c9b88a1d0002eac06dc8550cb94"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Nettle\nUpstream-Contact: Niels M\u00f6ller <nisse at lysator.liu.se>\nSource: http://www.lysator.liu.se/~nisse/nettle/\nCopyright: \u00a9 2001-2020 Niels M\u00f6ller\n Some parts are Copyright \u00a9 the Free Software Foundation and various\n people. See below and source code comments for details.\nLicense: LGPL-3+ or GPL-2+\nComment:\n Nettle is dual licenced under the GNU General Public License version\n 2 or later, and the GNU Lesser General Public License version 3 or\n later. When using Nettle, you must comply fully with all conditions\n of at least one of these licenses. A few of the individual files are\n licensed under more permissive terms, or in the public domain. To\n find the current status of particular files, you have to read the\n copyright notices at the top of the files.\n .\n 8X--------- AUTHORS file -----------------------------------------\n Authors of GNU Nettle\n .\n The oldest code in Nettle was copied into precursors of the Nettle\n library from other public domain or LGPLv2 sources.\n .\n Steve Reid\t\tOriginal CAST128 implementation\n Dana L. How\t\tOriginal DES implementation,\n Colin Plumb\t\tOriginal MD5 implementation\n Peter Gutmann\t\tOriginal SHA1 implementation\n Andrew Kuchling\t\tOriginal MD2 implementation\n .\n Free Software Foundation\n \t\t\tHolds copyrights on code ported from\n \t\t\tlibgcrypt, written by Werner Koch and others.\n .\n J.H.M. Dassen\t\tOriginal port of blowfish to GNU lsh, later\n \t\t\tsplit off into Nettle. (This blowfish\n \t\t\timplementation was replaced later).\n \t\t\tTwofish tests.\n .\n Ruud de Rooij\t\tTwofish implementation for GNU lsh, later split off into Nettle.\n .\n Rafael Sevilla\t\tAES C and x86 implementation, original port of\n \t\t\tSerpent, for GNU lsh, later split off into Nettle.\n .\n Authors of Nettle (in roughly chronological order of initial contribution)\n .\n Niels M\u00f6ller\t\tMain author.\n .\n Dan Egnor\t\tBase64 conversion.\n .\n Andreas Sigfridsson\tPort of MD2, from Andrew Kuchling's python\n \t\t\tcryptography toolkit.\n .\n Marcus Comstedt\t\tImplemented MD4.\n .\n D. J. Bernstein\t\tSalsa20 public domain reference implementation.\n .\n Simon Josefsson\t\tPort of Arctwo, from GnuTLS and libgcrypt. New\n \t\t\tports of LGPL Serpent and Blowfish code, from\n \t\t\tlibgcrypt. Port of Salsa20, based on djb's\n \t\t\treference. Implementation of PBKDF2 (RFC\n \t\t\t2898).\n .\n Henrik Grubbstr\u00f6m\tAES assembly for Sparc64.\n .\n Magnus Holmgren\t\tConversion of DSA keys from DER format to SEXP\n \t\t\tformat.\n .\n Daniel Kahn Gillmor\tAdded the lists for nettle_get_ciphers,\n \t\t\tnettle_get_hashes and nettle_get_armors. Test\n \t\t\tvectors for hashes and hmac.\n .\n Nippon Telegraph and Telephone Corporation\n \t\t\tLGPL:ed reference implementation of the\n \t\t\tCamellia cipher.\n .\n Andrew M. (floodyberry)\n \t\t\tThe poly1305 code nettle's C implementation is\n \t\t\tderived from.\n .\n Aleksey Kravchenko\tThe gosthash94 implementation in rhash library.\n .\n Stefan Metzmacher, Jeremy Allison, Michael Adam\n \t\t\tContributed to the CMAC code, which was added\n \t\t\tto Nettle by Nikos Mavroyanopoulos.\n .\n Nikos Mavroyanopoulos\tGCM implementation, RSA blinding code,\n \t\t\tinterface for general rsa-pkcs1 signatures.\n \t\t\tPort of gosthash94 implementation from rhash. Port of\n \t\t\tpoly1305. Salsa20r12 variant. HKDF (RFC 5869)\n \t\t\timplementation. CMAC and SIV-CMAV\n \t\t\timplementation. CTR and GCM optimizations.\n \t\t\tImplementation of versioned symbols. Setup of\n \t\t\t.gitlab-ci.yml. Large number of smaller fixes.\n .\n Andres Mejia\t\tPorted Ripemd160 from libgcrypt.\n .\n Martin Storsj\u00f6\t\tImplemented m4 macrology to make x86_64\n \t\t\tassembly files work with the windows ABI.\n \t\t\tSeveral other portability improvements.\n .\n Jeronimo Pellegrini\tDocumentation for base16 and base64 functions.\n .\n Tim Ruehsen\t\tSeveral smaller cleanups and bugfixes.\n .\n Fredrik Thulin\t\tTest vectors for pbkdf2-hmac-sha512.\n .\n Joachim Str\u00f6mbergson\tChacha implementation. Support for sha512_224\n \t\t\tand sha512_256.\n .\n Owen Kirby\t\tImplementation of CCM mode.\n .\n Amos Jeffries\t\tImplementation of base64url encoding.\n .\n Daiki Ueno\t\tImplementation of RSA-PSS signatures,\n \t\t\tcurve448, shake256, ed448-shake256 signatures,\n \t\t\tchacha functions for 32-bit nonce, struct\n \t\t\tnettle_mac interface.\n .\n Dmitry Baryshkov\tCFB and CFB8 modes, CMAC64. gosthash94cp and\n \t\t\tStreebog hash functions, GOST DSA signatures\n \t\t\tand curves GC256B and GC512A. Various bug\n \t\t\tfixes and cleanups.\n .\n Simo Sorce\t\tSide-channel silent RSA functions. XTS\n \t\t\timplementation.\n .\n H.J. Lu\t\t\tAssembly annotations for Intel \"Control-flow\n \t\t\tEnforcement Technology\".\n .\n Stephen R. van den Berg\n \t\t\tPort of bcrypt.\n .\n Mamone Tarsha Kurdi\tPowerpc64 assembly and fat build setup,\n \t\t\tincluding AES and GCM. Arm64 assembly and fat\n \t\t\tbuild setup, including AES, Chacha, GCM, SHA1,\n \t\t\tSHA256. S390x assembly and fat build setup,\n \t\t\tincluding AES, Chacha, memxor, memxor3, SHA1,\n \t\t\tSHA256, SHA512, SHA3.\n .\n Nicolas Mora\t\tRFC 3394 keywrap.\n .\n Tianjia Zhang\t\tSM3 hash function.\n .\n Amitay Isaacs\t\tPowerpc64 assembly for secp192r1, secp224r1\n \t\t\tand secp256r1.\n .\n Martin Schwenke\t\tPowerpc64 assembly for secp384r1, secp521r1,\n \t\t\tcurve25519 and curve448.\n 8X--------- end of AUTHORS file ------------------------------------\n\nFiles: *\nCopyright: 2001-2022 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: aes-invert-internal.c aes-set-decrypt-key.c\n aes-set-encrypt-key.c aes-set-key-internal.c\nCopyright: 2013, Niels M\u00f6ller\n 2000-2002, Rafael R. Sevilla, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: x86*/aes-*-internal.asm\nCopyright: 2001, 2002, 2005 Rafael R. Sevilla, Niels M\u00f6ller\n 2008, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.c\nCopyright: 2003 Nikos Mavroyanopoulos\n 2004 Simon Josefsson\n 2004 Free Software Foundation, Inc.\n 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo-meta.c pbkdf2.c\n salsa20-128-set-key.c salsa20-256-set-key.c\n salsa20-core-internal.c\n salsa20-set-key.c salsa20-set-nonce.c\nCopyright: 2012-2014 Niels M\u00f6ller\n 2004, 2012 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.h\n salsa20-internal.h salsa20.h\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/chacha-2core.asm arm64/chacha-4core.asm\n arm64/chacha-core-internal.asm s390x/vf/chacha-2core.asm\n s390x/vf/chacha-4core.asm s390x/vf/chacha-core-internal.asm\nCopyright: 2020 Niels M\u00f6ller and Torbj\u00f6rn Granlund\n 2022 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/aes128-decrypt.asm arm64/crypto/aes128-encrypt.asm\n arm64/crypto/aes192-decrypt.asm arm64/crypto/aes192-encrypt.asm\n arm64/crypto/aes256-decrypt.asm arm64/crypto/aes256-encrypt.asm\n arm64/crypto/sha1-compress.asm arm64/crypto/sha256-compress.asm\n arm64/fat/aes128-decrypt-2.asm arm64/fat/aes128-encrypt-2.asm\n arm64/fat/aes192-decrypt-2.asm arm64/fat/aes192-encrypt-2.asm\n arm64/fat/aes256-decrypt-2.asm arm64/fat/aes256-encrypt-2.asm\n arm64/fat/ghash-set-key-2.asm arm64/fat/ghash-update-2.asm\n arm64/fat/sha1-compress-2.asm arm64/fat/sha256-compress-2.asm\n fat-arm64.c fat-s390x.c powerpc64/fat/ghash-set-key-2.asm\n powerpc64/fat/ghash-update-2.asm s390x/fat/aes128-decrypt-2.asm\n s390x/fat/aes128-encrypt-2.asm s390x/fat/aes128-set-decrypt-key-2.asm\n s390x/fat/aes128-set-encrypt-key-2.asm\n s390x/fat/aes192-decrypt-2.asm s390x/fat/aes192-encrypt-2.asm\n s390x/fat/aes192-set-decrypt-key-2.asm\n s390x/fat/aes192-set-encrypt-key-2.asm s390x/fat/aes256-decrypt-2.asm\n s390x/fat/aes256-encrypt-2.asm s390x/fat/aes256-set-decrypt-key-2.asm\n s390x/fat/aes256-set-encrypt-key-2.asm s390x/fat/chacha-2core.asm\n s390x/fat/chacha-4core.asm s390x/fat/chacha-core-internal-2.asm\n s390x/fat/cpu-facility.asm s390x/fat/ghash-set-key-2.asm\n s390x/fat/ghash-update-2.asm s390x/fat/memxor3-2.asm\n s390x/fat/sha1-compress-2.asm s390x/fat/sha256-compress-2.asm\n s390x/fat/sha3-permute-2.asm s390x/fat/sha512-compress-2.asm\n s390x/memxor.asm s390x/msa/sha1-compress.asm\n s390x/msa_x1/aes128-decrypt.asm s390x/msa_x1/aes128-encrypt.asm\n s390x/msa_x1/aes128-set-decrypt-key.asm\n s390x/msa_x1/aes128-set-encrypt-key.asm s390x/msa_x1/sha256-compress.asm\n s390x/msa_x2/aes192-decrypt.asm s390x/msa_x2/aes192-encrypt.asm\n s390x/msa_x2/aes192-set-decrypt-key.asm\n s390x/msa_x2/aes192-set-encrypt-key.asm s390x/msa_x2/aes256-decrypt.asm\n s390x/msa_x2/aes256-encrypt.asm s390x/msa_x2/aes256-set-decrypt-key.asm\n s390x/msa_x2/aes256-set-encrypt-key.asm s390x/msa_x2/sha512-compress.asm\n s390x/msa_x4/ghash-set-key.asm s390x/msa_x4/ghash-update.asm\n s390x/vf/memxor3.asm\nCopyright: 2020, 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/ghash-set-key.asm arm64/crypto/ghash-update.asm\n powerpc64/p8/ghash-set-key.asm powerpc64/p8/ghash-update.asm\nCopyright: 2020 Niels M\u00f6ller and Mamone Tarsha\n 2021 Michael Weiser\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64.h base64-meta.c\nCopyright: 2002 Dan Egnor, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64url-decode.c base64url-encode.c\nCopyright: 2015 Amos Jeffries, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: block-internal.h\nCopyright: 2019 Dmitry Eremin-Solenikov\n 2018 Red Hat, Inc.\n 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\n 2010 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.h\nCopyright: 1998, 2001 Free Software Foundation, Inc.\n 1998, 2001 Ray Dassen\n 1998, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: camellia-table.c camellia-crypt-internal.c camellia.h camellia-internal.h\n camellia128-set-encrypt-key.c camellia256-set-encrypt-key.c camellia-absorb.c\nCopyright: 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2010, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ccm.c ccm.h ccm-aes128.c\n ccm-aes192.c ccm-aes256.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cfb.c\n cfb.h\n ecc-gostdsa-sign.c\n ecc-gostdsa-verify.c\n gostdsa-sign.c\n gostdsa-verify.c\nCopyright: 2015, 2017 Dmitry Eremin-Solenikov\n 2001, 2011, 2013, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: chacha-core-internal.c chacha-crypt.c\n chacha-internal.h chacha.h chacha-set-nonce.c\nCopyright: 2012 Simon Josefsson\n 2013 Joachim Str\u00f6mbergson\n 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-aes128.c cmac-aes256.c\n cmac.h hkdf.c hkdf.h\n xts-aes128.c xts-aes256.c xts.c\nCopyright: 2017, 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3-meta.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3.c\n ecc-gost-gc256b.c ecc-gost-gc512a.c\n gost28147-internal.h gostdsa-vko.c\n hmac-gosthash94.c pbkdf2-hmac-gosthash94.c\nCopyright: 2016-2020 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac.c cmac64.c\nCopyright: 2012 Stefan Metzmacher, Michael Adam, Jeremy Allison\n 2017 Red Hat Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ctr16.c\n pkcs1-internal.h pkcs1-sec-decrypt.c\n version.h.in xts.h\nCopyright: 2015, 2017, 2018 Red Hat, Inc.\n 2001, 2002, 2005-2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: curve448-eh-to-x.c curve448.h\n curve448-mul-g.c curve448-mul.c\n ecc-curve448.c ed448-shake256-pubkey.c\n ed448-shake256-sign.c ed448-shake256-verify.c\n shake256.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: der2dsa.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: desCode.h descore.README desdata.c\nCopyright: \u00a9 2002 Dana L. How\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Library General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Library\n General Public License, version 2, can be found in\n /usr/share/common-licenses/LGPL-2.\n\nFiles: des.c des.h\nCopyright: 1992 Dana L. How\n 1997, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: dsa2sexp.c\nCopyright: 2002, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: eccdata.c eddsa-hash.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\n 2013, 2014, 2017, 2019 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ecc-secp192r1.c\nCopyright: 2013, 2014, 2019, 2021 Niels M\u00f6ller\n 2019 Wim Lewis\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/base16dec.c examples/base16enc.c\n examples/base64dec.c examples/base64enc.c\nCopyright: 2006, 2012, Jeronimo Pellegrini, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/nettle-openssl.c\nCopyright: 2015, 2017, 2018, Red Hat, Inc.\n 2001, 2002, 2005-2018, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gcm.c gcm.h ghash-set-key.c ghash-update.c\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018, 2022 Niels M\u00f6ller\n 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gmp-glue.c\n gmp-glue.h\nCopyright: 2013 Red Hat, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gost28147.c gosthash94.c\nCopyright: 2019 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: Expat\n\nFiles: gostdsa.h\nCopyright: 2015, Dmity Eremin-Solenikov\n 2013, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94-meta.c\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94.h\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-md5-meta.c hmac-ripemd160-meta.c\n hmac-sha1-meta.c hmac-sha224-meta.c\n hmac-sha256-meta.c hmac-sha384-meta.c\n hmac-sha512-meta.c nettle-meta-macs.c\n pss-mgf1.c pss-mgf1.h pss.c pss.h\n rsa-pss-sha256-sign-tr.c rsa-pss-sha256-verify.c\n rsa-pss-sha512-sign-tr.c rsa-pss-sha512-verify.c\nCopyright: 2017, 2020 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-sm3.c hmac-sm3-meta.c\nCopyright: 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md2.c\nCopyright: ? Andrew Kuchling\n 2003 Andreas Sigfridsson\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md4.c\nCopyright: 2003 Marcus Comstedt\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md5.c md5-compress.c\nCopyright: Colin Plumb, Andrew Kuchling\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: memxor.c\nCopyright: 1991,1993, 1995 Free Software Foundation, Inc.\n 2010 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nettle-meta-armors.c\n nettle-meta-ciphers.c\n nettle-meta-hashes.c\nCopyright: 2011 Daniel Kahn Gillmor\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nist-keywrap.c nist-keywrap.h\nCopyright: 2021 Nicolas Mora\n 2021 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha1.c\n pbkdf2-hmac-sha256.c\n pbkdf2.h\n salsa20-crypt.c\nCopyright: 2012, Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha384.c pbkdf2-hmac-sha512.c\nCopyright: 2012 Simon Josefsson\n 2021 Nicolas Mora\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-aes.c\nCopyright: 2014 Niels M\u00f6ller\n 2013 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.c\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013 Niels M\u00f6ller\n 2012, 2013 Andrew M. (floodyberry)\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.h\n poly1305.h\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013, 2014, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-curve25519-modp.asm powerpc64/ecc-curve448-modp.asm\n powerpc64/ecc-secp521r1-modp.asm\nCopyright: 2021 Martin Schwenke & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp192r1-modp.asm powerpc64/ecc-secp224r1-modp.asm\nCopyright: 2021 Amitay Isaacs, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp256r1-redc.asm\nCopyright: 2021 Amitay Isaacs & Martin Schwenke, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp384r1-modp.asm\nCopyright: 2021 Martin Schwenke, Amitay Isaacs & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160.c ripemd160-compress.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160-meta.c ripemd160.h ripemd160-internal.h\nCopyright: 2011 Andres Mejia\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-blind.c rsa-decrypt-tr.c\nCopyright: 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-pkcs1-sign-tr.c salsa20r12-crypt.c\n siv-cmac-aes128.c siv-cmac-aes256.c\n siv-cmac.c siv-cmac.h\nCopyright: 2012, 2013, 2017, 2018, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-compute-root.c\nCopyright: 2018 Red Hat, Inc\n 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-decrypt.c\nCopyright: 2018, Red Hat, Inc.\n 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sign-tr.c\nCopyright: 2018, Red Hat Inc.\n 2012, Nikos Mavrogiannopoulos\n 2001, 2015, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: s390x/vf/sha3-permute.asm\nCopyright: 2012 Niels M\u00f6ller\n 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c serpent-internal.h\nCopyright: 1998 Ross Anderson, Eli Biham, Lars Knudsen\n 2003, 2004, 2005 Free Software Foundation, Inc.\n 2010, 2011 Simon Josefsson\n 2011, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha1-compress.c\nCopyright: 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha512.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sm3.c sm3.h sm3-meta.c\nCopyright: 2017 Jia Zhang\n 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/arctwo-test.c\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/ccm-test.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/chacha-test.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/curve448-dh-test.c\n testsuite/ed448-test.c\n testsuite/shake256-test.c\nCopyright: 2017, Red Hat, Inc.\n 2017, Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/siv-test.c\nCopyright: 2012, 2013, 2017, 2018 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: texinfo.tex\nCopyright: 1985, 1986, 1988, 1990-2009, Free Software Foundation, Inc.\nLicense: GPL-3+\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nFiles: twofish*\nCopyright: 1999 Ruud de Rooij <ruud at debian.org>\n 1999 J.H.M. Dassen (Ray) <jdassen at wi.LeidenUniv.nl>\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: tools/pkcs1-conv.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: getopt*\nCopyright: 1987-2001 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: config.guess config.sub\nCopyright: \u00a9 1992-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf exception\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program.\n\nFiles: debian/*\nCopyright: none\nLicense: public-domain\n I believe that most files in debian/ hardly contains any creative\n expression eligible for copyright.\n\nFiles: debian/sexp-conv.1\nCopyright: 2002 Timshel Knoll <timshel at debian.org>\n 2007 Magnus Holmgren\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June. 1991.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License, version 2, can be found in\n /usr/share/common-licenses/GPL-2.\nComment:\n This manpage was copied from the lsh-utils package. Timshel didn't\n explicitly select a license for his packaging work, but I think that\n it can be considered released under the same license as LSH itself.\n\nFiles: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1\nCopyright: 2007 Magnus Holmgren\nLicense: GAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved.\n\nLicense: LGPL-3+\n The nettle library is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\n License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, see http://www.gnu.org/licenses/.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU Lesser General Public License can be found in\n /usr/share/common-licenses/LGPL.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU General Public License can be found in\n /usr/share/common-licenses/GPL.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Autoconf exception"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GAP",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Nettle\nUpstream-Contact: Niels M\u00f6ller <nisse at lysator.liu.se>\nSource: http://www.lysator.liu.se/~nisse/nettle/\nCopyright: \u00a9 2001-2020 Niels M\u00f6ller\n Some parts are Copyright \u00a9 the Free Software Foundation and various\n people. See below and source code comments for details.\nLicense: LGPL-3+ or GPL-2+\nComment:\n Nettle is dual licenced under the GNU General Public License version\n 2 or later, and the GNU Lesser General Public License version 3 or\n later. When using Nettle, you must comply fully with all conditions\n of at least one of these licenses. A few of the individual files are\n licensed under more permissive terms, or in the public domain. To\n find the current status of particular files, you have to read the\n copyright notices at the top of the files.\n .\n 8X--------- AUTHORS file -----------------------------------------\n Authors of GNU Nettle\n .\n The oldest code in Nettle was copied into precursors of the Nettle\n library from other public domain or LGPLv2 sources.\n .\n Steve Reid\t\tOriginal CAST128 implementation\n Dana L. How\t\tOriginal DES implementation,\n Colin Plumb\t\tOriginal MD5 implementation\n Peter Gutmann\t\tOriginal SHA1 implementation\n Andrew Kuchling\t\tOriginal MD2 implementation\n .\n Free Software Foundation\n \t\t\tHolds copyrights on code ported from\n \t\t\tlibgcrypt, written by Werner Koch and others.\n .\n J.H.M. Dassen\t\tOriginal port of blowfish to GNU lsh, later\n \t\t\tsplit off into Nettle. (This blowfish\n \t\t\timplementation was replaced later).\n \t\t\tTwofish tests.\n .\n Ruud de Rooij\t\tTwofish implementation for GNU lsh, later split off into Nettle.\n .\n Rafael Sevilla\t\tAES C and x86 implementation, original port of\n \t\t\tSerpent, for GNU lsh, later split off into Nettle.\n .\n Authors of Nettle (in roughly chronological order of initial contribution)\n .\n Niels M\u00f6ller\t\tMain author.\n .\n Dan Egnor\t\tBase64 conversion.\n .\n Andreas Sigfridsson\tPort of MD2, from Andrew Kuchling's python\n \t\t\tcryptography toolkit.\n .\n Marcus Comstedt\t\tImplemented MD4.\n .\n D. J. Bernstein\t\tSalsa20 public domain reference implementation.\n .\n Simon Josefsson\t\tPort of Arctwo, from GnuTLS and libgcrypt. New\n \t\t\tports of LGPL Serpent and Blowfish code, from\n \t\t\tlibgcrypt. Port of Salsa20, based on djb's\n \t\t\treference. Implementation of PBKDF2 (RFC\n \t\t\t2898).\n .\n Henrik Grubbstr\u00f6m\tAES assembly for Sparc64.\n .\n Magnus Holmgren\t\tConversion of DSA keys from DER format to SEXP\n \t\t\tformat.\n .\n Daniel Kahn Gillmor\tAdded the lists for nettle_get_ciphers,\n \t\t\tnettle_get_hashes and nettle_get_armors. Test\n \t\t\tvectors for hashes and hmac.\n .\n Nippon Telegraph and Telephone Corporation\n \t\t\tLGPL:ed reference implementation of the\n \t\t\tCamellia cipher.\n .\n Andrew M. (floodyberry)\n \t\t\tThe poly1305 code nettle's C implementation is\n \t\t\tderived from.\n .\n Aleksey Kravchenko\tThe gosthash94 implementation in rhash library.\n .\n Stefan Metzmacher, Jeremy Allison, Michael Adam\n \t\t\tContributed to the CMAC code, which was added\n \t\t\tto Nettle by Nikos Mavroyanopoulos.\n .\n Nikos Mavroyanopoulos\tGCM implementation, RSA blinding code,\n \t\t\tinterface for general rsa-pkcs1 signatures.\n \t\t\tPort of gosthash94 implementation from rhash. Port of\n \t\t\tpoly1305. Salsa20r12 variant. HKDF (RFC 5869)\n \t\t\timplementation. CMAC and SIV-CMAV\n \t\t\timplementation. CTR and GCM optimizations.\n \t\t\tImplementation of versioned symbols. Setup of\n \t\t\t.gitlab-ci.yml. Large number of smaller fixes.\n .\n Andres Mejia\t\tPorted Ripemd160 from libgcrypt.\n .\n Martin Storsj\u00f6\t\tImplemented m4 macrology to make x86_64\n \t\t\tassembly files work with the windows ABI.\n \t\t\tSeveral other portability improvements.\n .\n Jeronimo Pellegrini\tDocumentation for base16 and base64 functions.\n .\n Tim Ruehsen\t\tSeveral smaller cleanups and bugfixes.\n .\n Fredrik Thulin\t\tTest vectors for pbkdf2-hmac-sha512.\n .\n Joachim Str\u00f6mbergson\tChacha implementation. Support for sha512_224\n \t\t\tand sha512_256.\n .\n Owen Kirby\t\tImplementation of CCM mode.\n .\n Amos Jeffries\t\tImplementation of base64url encoding.\n .\n Daiki Ueno\t\tImplementation of RSA-PSS signatures,\n \t\t\tcurve448, shake256, ed448-shake256 signatures,\n \t\t\tchacha functions for 32-bit nonce, struct\n \t\t\tnettle_mac interface.\n .\n Dmitry Baryshkov\tCFB and CFB8 modes, CMAC64. gosthash94cp and\n \t\t\tStreebog hash functions, GOST DSA signatures\n \t\t\tand curves GC256B and GC512A. Various bug\n \t\t\tfixes and cleanups.\n .\n Simo Sorce\t\tSide-channel silent RSA functions. XTS\n \t\t\timplementation.\n .\n H.J. Lu\t\t\tAssembly annotations for Intel \"Control-flow\n \t\t\tEnforcement Technology\".\n .\n Stephen R. van den Berg\n \t\t\tPort of bcrypt.\n .\n Mamone Tarsha Kurdi\tPowerpc64 assembly and fat build setup,\n \t\t\tincluding AES and GCM. Arm64 assembly and fat\n \t\t\tbuild setup, including AES, Chacha, GCM, SHA1,\n \t\t\tSHA256. S390x assembly and fat build setup,\n \t\t\tincluding AES, Chacha, memxor, memxor3, SHA1,\n \t\t\tSHA256, SHA512, SHA3.\n .\n Nicolas Mora\t\tRFC 3394 keywrap.\n .\n Tianjia Zhang\t\tSM3 hash function.\n .\n Amitay Isaacs\t\tPowerpc64 assembly for secp192r1, secp224r1\n \t\t\tand secp256r1.\n .\n Martin Schwenke\t\tPowerpc64 assembly for secp384r1, secp521r1,\n \t\t\tcurve25519 and curve448.\n 8X--------- end of AUTHORS file ------------------------------------\n\nFiles: *\nCopyright: 2001-2022 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: aes-invert-internal.c aes-set-decrypt-key.c\n aes-set-encrypt-key.c aes-set-key-internal.c\nCopyright: 2013, Niels M\u00f6ller\n 2000-2002, Rafael R. Sevilla, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: x86*/aes-*-internal.asm\nCopyright: 2001, 2002, 2005 Rafael R. Sevilla, Niels M\u00f6ller\n 2008, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.c\nCopyright: 2003 Nikos Mavroyanopoulos\n 2004 Simon Josefsson\n 2004 Free Software Foundation, Inc.\n 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo-meta.c pbkdf2.c\n salsa20-128-set-key.c salsa20-256-set-key.c\n salsa20-core-internal.c\n salsa20-set-key.c salsa20-set-nonce.c\nCopyright: 2012-2014 Niels M\u00f6ller\n 2004, 2012 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.h\n salsa20-internal.h salsa20.h\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/chacha-2core.asm arm64/chacha-4core.asm\n arm64/chacha-core-internal.asm s390x/vf/chacha-2core.asm\n s390x/vf/chacha-4core.asm s390x/vf/chacha-core-internal.asm\nCopyright: 2020 Niels M\u00f6ller and Torbj\u00f6rn Granlund\n 2022 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/aes128-decrypt.asm arm64/crypto/aes128-encrypt.asm\n arm64/crypto/aes192-decrypt.asm arm64/crypto/aes192-encrypt.asm\n arm64/crypto/aes256-decrypt.asm arm64/crypto/aes256-encrypt.asm\n arm64/crypto/sha1-compress.asm arm64/crypto/sha256-compress.asm\n arm64/fat/aes128-decrypt-2.asm arm64/fat/aes128-encrypt-2.asm\n arm64/fat/aes192-decrypt-2.asm arm64/fat/aes192-encrypt-2.asm\n arm64/fat/aes256-decrypt-2.asm arm64/fat/aes256-encrypt-2.asm\n arm64/fat/ghash-set-key-2.asm arm64/fat/ghash-update-2.asm\n arm64/fat/sha1-compress-2.asm arm64/fat/sha256-compress-2.asm\n fat-arm64.c fat-s390x.c powerpc64/fat/ghash-set-key-2.asm\n powerpc64/fat/ghash-update-2.asm s390x/fat/aes128-decrypt-2.asm\n s390x/fat/aes128-encrypt-2.asm s390x/fat/aes128-set-decrypt-key-2.asm\n s390x/fat/aes128-set-encrypt-key-2.asm\n s390x/fat/aes192-decrypt-2.asm s390x/fat/aes192-encrypt-2.asm\n s390x/fat/aes192-set-decrypt-key-2.asm\n s390x/fat/aes192-set-encrypt-key-2.asm s390x/fat/aes256-decrypt-2.asm\n s390x/fat/aes256-encrypt-2.asm s390x/fat/aes256-set-decrypt-key-2.asm\n s390x/fat/aes256-set-encrypt-key-2.asm s390x/fat/chacha-2core.asm\n s390x/fat/chacha-4core.asm s390x/fat/chacha-core-internal-2.asm\n s390x/fat/cpu-facility.asm s390x/fat/ghash-set-key-2.asm\n s390x/fat/ghash-update-2.asm s390x/fat/memxor3-2.asm\n s390x/fat/sha1-compress-2.asm s390x/fat/sha256-compress-2.asm\n s390x/fat/sha3-permute-2.asm s390x/fat/sha512-compress-2.asm\n s390x/memxor.asm s390x/msa/sha1-compress.asm\n s390x/msa_x1/aes128-decrypt.asm s390x/msa_x1/aes128-encrypt.asm\n s390x/msa_x1/aes128-set-decrypt-key.asm\n s390x/msa_x1/aes128-set-encrypt-key.asm s390x/msa_x1/sha256-compress.asm\n s390x/msa_x2/aes192-decrypt.asm s390x/msa_x2/aes192-encrypt.asm\n s390x/msa_x2/aes192-set-decrypt-key.asm\n s390x/msa_x2/aes192-set-encrypt-key.asm s390x/msa_x2/aes256-decrypt.asm\n s390x/msa_x2/aes256-encrypt.asm s390x/msa_x2/aes256-set-decrypt-key.asm\n s390x/msa_x2/aes256-set-encrypt-key.asm s390x/msa_x2/sha512-compress.asm\n s390x/msa_x4/ghash-set-key.asm s390x/msa_x4/ghash-update.asm\n s390x/vf/memxor3.asm\nCopyright: 2020, 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/ghash-set-key.asm arm64/crypto/ghash-update.asm\n powerpc64/p8/ghash-set-key.asm powerpc64/p8/ghash-update.asm\nCopyright: 2020 Niels M\u00f6ller and Mamone Tarsha\n 2021 Michael Weiser\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64.h base64-meta.c\nCopyright: 2002 Dan Egnor, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64url-decode.c base64url-encode.c\nCopyright: 2015 Amos Jeffries, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: block-internal.h\nCopyright: 2019 Dmitry Eremin-Solenikov\n 2018 Red Hat, Inc.\n 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\n 2010 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.h\nCopyright: 1998, 2001 Free Software Foundation, Inc.\n 1998, 2001 Ray Dassen\n 1998, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: camellia-table.c camellia-crypt-internal.c camellia.h camellia-internal.h\n camellia128-set-encrypt-key.c camellia256-set-encrypt-key.c camellia-absorb.c\nCopyright: 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2010, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ccm.c ccm.h ccm-aes128.c\n ccm-aes192.c ccm-aes256.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cfb.c\n cfb.h\n ecc-gostdsa-sign.c\n ecc-gostdsa-verify.c\n gostdsa-sign.c\n gostdsa-verify.c\nCopyright: 2015, 2017 Dmitry Eremin-Solenikov\n 2001, 2011, 2013, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: chacha-core-internal.c chacha-crypt.c\n chacha-internal.h chacha.h chacha-set-nonce.c\nCopyright: 2012 Simon Josefsson\n 2013 Joachim Str\u00f6mbergson\n 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-aes128.c cmac-aes256.c\n cmac.h hkdf.c hkdf.h\n xts-aes128.c xts-aes256.c xts.c\nCopyright: 2017, 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3-meta.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3.c\n ecc-gost-gc256b.c ecc-gost-gc512a.c\n gost28147-internal.h gostdsa-vko.c\n hmac-gosthash94.c pbkdf2-hmac-gosthash94.c\nCopyright: 2016-2020 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac.c cmac64.c\nCopyright: 2012 Stefan Metzmacher, Michael Adam, Jeremy Allison\n 2017 Red Hat Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ctr16.c\n pkcs1-internal.h pkcs1-sec-decrypt.c\n version.h.in xts.h\nCopyright: 2015, 2017, 2018 Red Hat, Inc.\n 2001, 2002, 2005-2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: curve448-eh-to-x.c curve448.h\n curve448-mul-g.c curve448-mul.c\n ecc-curve448.c ed448-shake256-pubkey.c\n ed448-shake256-sign.c ed448-shake256-verify.c\n shake256.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: der2dsa.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: desCode.h descore.README desdata.c\nCopyright: \u00a9 2002 Dana L. How\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Library General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Library\n General Public License, version 2, can be found in\n /usr/share/common-licenses/LGPL-2.\n\nFiles: des.c des.h\nCopyright: 1992 Dana L. How\n 1997, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: dsa2sexp.c\nCopyright: 2002, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: eccdata.c eddsa-hash.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\n 2013, 2014, 2017, 2019 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ecc-secp192r1.c\nCopyright: 2013, 2014, 2019, 2021 Niels M\u00f6ller\n 2019 Wim Lewis\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/base16dec.c examples/base16enc.c\n examples/base64dec.c examples/base64enc.c\nCopyright: 2006, 2012, Jeronimo Pellegrini, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/nettle-openssl.c\nCopyright: 2015, 2017, 2018, Red Hat, Inc.\n 2001, 2002, 2005-2018, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gcm.c gcm.h ghash-set-key.c ghash-update.c\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018, 2022 Niels M\u00f6ller\n 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gmp-glue.c\n gmp-glue.h\nCopyright: 2013 Red Hat, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gost28147.c gosthash94.c\nCopyright: 2019 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: Expat\n\nFiles: gostdsa.h\nCopyright: 2015, Dmity Eremin-Solenikov\n 2013, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94-meta.c\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94.h\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-md5-meta.c hmac-ripemd160-meta.c\n hmac-sha1-meta.c hmac-sha224-meta.c\n hmac-sha256-meta.c hmac-sha384-meta.c\n hmac-sha512-meta.c nettle-meta-macs.c\n pss-mgf1.c pss-mgf1.h pss.c pss.h\n rsa-pss-sha256-sign-tr.c rsa-pss-sha256-verify.c\n rsa-pss-sha512-sign-tr.c rsa-pss-sha512-verify.c\nCopyright: 2017, 2020 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-sm3.c hmac-sm3-meta.c\nCopyright: 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md2.c\nCopyright: ? Andrew Kuchling\n 2003 Andreas Sigfridsson\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md4.c\nCopyright: 2003 Marcus Comstedt\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md5.c md5-compress.c\nCopyright: Colin Plumb, Andrew Kuchling\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: memxor.c\nCopyright: 1991,1993, 1995 Free Software Foundation, Inc.\n 2010 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nettle-meta-armors.c\n nettle-meta-ciphers.c\n nettle-meta-hashes.c\nCopyright: 2011 Daniel Kahn Gillmor\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nist-keywrap.c nist-keywrap.h\nCopyright: 2021 Nicolas Mora\n 2021 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha1.c\n pbkdf2-hmac-sha256.c\n pbkdf2.h\n salsa20-crypt.c\nCopyright: 2012, Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha384.c pbkdf2-hmac-sha512.c\nCopyright: 2012 Simon Josefsson\n 2021 Nicolas Mora\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-aes.c\nCopyright: 2014 Niels M\u00f6ller\n 2013 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.c\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013 Niels M\u00f6ller\n 2012, 2013 Andrew M. (floodyberry)\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.h\n poly1305.h\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013, 2014, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-curve25519-modp.asm powerpc64/ecc-curve448-modp.asm\n powerpc64/ecc-secp521r1-modp.asm\nCopyright: 2021 Martin Schwenke & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp192r1-modp.asm powerpc64/ecc-secp224r1-modp.asm\nCopyright: 2021 Amitay Isaacs, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp256r1-redc.asm\nCopyright: 2021 Amitay Isaacs & Martin Schwenke, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp384r1-modp.asm\nCopyright: 2021 Martin Schwenke, Amitay Isaacs & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160.c ripemd160-compress.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160-meta.c ripemd160.h ripemd160-internal.h\nCopyright: 2011 Andres Mejia\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-blind.c rsa-decrypt-tr.c\nCopyright: 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-pkcs1-sign-tr.c salsa20r12-crypt.c\n siv-cmac-aes128.c siv-cmac-aes256.c\n siv-cmac.c siv-cmac.h\nCopyright: 2012, 2013, 2017, 2018, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-compute-root.c\nCopyright: 2018 Red Hat, Inc\n 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-decrypt.c\nCopyright: 2018, Red Hat, Inc.\n 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sign-tr.c\nCopyright: 2018, Red Hat Inc.\n 2012, Nikos Mavrogiannopoulos\n 2001, 2015, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: s390x/vf/sha3-permute.asm\nCopyright: 2012 Niels M\u00f6ller\n 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c serpent-internal.h\nCopyright: 1998 Ross Anderson, Eli Biham, Lars Knudsen\n 2003, 2004, 2005 Free Software Foundation, Inc.\n 2010, 2011 Simon Josefsson\n 2011, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha1-compress.c\nCopyright: 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha512.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sm3.c sm3.h sm3-meta.c\nCopyright: 2017 Jia Zhang\n 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/arctwo-test.c\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/ccm-test.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/chacha-test.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/curve448-dh-test.c\n testsuite/ed448-test.c\n testsuite/shake256-test.c\nCopyright: 2017, Red Hat, Inc.\n 2017, Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/siv-test.c\nCopyright: 2012, 2013, 2017, 2018 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: texinfo.tex\nCopyright: 1985, 1986, 1988, 1990-2009, Free Software Foundation, Inc.\nLicense: GPL-3+\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nFiles: twofish*\nCopyright: 1999 Ruud de Rooij <ruud at debian.org>\n 1999 J.H.M. Dassen (Ray) <jdassen at wi.LeidenUniv.nl>\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: tools/pkcs1-conv.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: getopt*\nCopyright: 1987-2001 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: config.guess config.sub\nCopyright: \u00a9 1992-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf exception\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program.\n\nFiles: debian/*\nCopyright: none\nLicense: public-domain\n I believe that most files in debian/ hardly contains any creative\n expression eligible for copyright.\n\nFiles: debian/sexp-conv.1\nCopyright: 2002 Timshel Knoll <timshel at debian.org>\n 2007 Magnus Holmgren\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June. 1991.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License, version 2, can be found in\n /usr/share/common-licenses/GPL-2.\nComment:\n This manpage was copied from the lsh-utils package. Timshel didn't\n explicitly select a license for his packaging work, but I think that\n it can be considered released under the same license as LSH itself.\n\nFiles: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1\nCopyright: 2007 Magnus Holmgren\nLicense: GAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved.\n\nLicense: LGPL-3+\n The nettle library is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\n License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, see http://www.gnu.org/licenses/.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU Lesser General Public License can be found in\n /usr/share/common-licenses/LGPL.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU General Public License can be found in\n /usr/share/common-licenses/GPL.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libhogweed6 at 3.8.1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3670,6 +10596,29 @@
"content": "d50716d5824083d667427817d506b45d3f59dc77e1ca52de000f3f62d4918afa"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Libidn2\nUpstream-Contact: Simon Josefsson <simon at josefsson.org>\nSource: https://www.gnu.org/software/libidn/#libidn2\n\nFiles: *\nCopyright: Copyright (C) 2011-2014 Simon Josefsson\nLicense: GPL-3+\n\nFiles: *.c *.h\nCopyright: Copyright (C) 2011-2014 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: build-aux/* lib/* GNUmakefile maint.mk\nCopyright: Copyright (C) 2001-2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: doc/gdoc\nCopyright: Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Simon Josefsson\n Copyright (c) 2001, 2002 Nikos Mavrogiannopoulos\n Copyright (c) 1998 Michael Zucchi\nLicense: GPL-3+\n\nFiles: lib/IdnaMappingTable.txt lib/DerivedNormalizationProps.txt tests/IdnaTest.txt\nCopyright: Copyright (c) 1991-2010 Unicode, Inc.\nLicense: Unicode\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General Public\n License version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General Public\n License version 2 can be found in /usr/share/common-licenses/GPL-2.\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 3 can be found in /usr/share/common-licenses/LGPL-3.\n\nLicense: Unicode\n For terms of use, see http://www.unicode.org/terms_of_use.html\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights reserved. Distributed\n under the Terms of Use in http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of the Unicode data files and any associated documentation\n (the \"Data Files\") or Unicode software and any associated\n documentation (the \"Software\") to deal in the Data Files or Software\n without restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, and/or sell copies of the\n Data Files or Software, and to permit persons to whom the Data Files\n or Software are furnished to do so, provided that (a) the above\n copyright notice(s) and this permission notice appear with all copies\n of the Data Files or Software, (b) both the above copyright notice(s)\n and this permission notice appear in associated documentation, and\n (c) there is clear notice in each modified Data File or in the\n Software as well as in the documentation associated with the Data\n File(s) or Software that the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\n ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY\n CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY\n DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\n WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE\n OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without prior\n written authorization of the copyright holder.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Unicode",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Libidn2\nUpstream-Contact: Simon Josefsson <simon at josefsson.org>\nSource: https://www.gnu.org/software/libidn/#libidn2\n\nFiles: *\nCopyright: Copyright (C) 2011-2014 Simon Josefsson\nLicense: GPL-3+\n\nFiles: *.c *.h\nCopyright: Copyright (C) 2011-2014 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: build-aux/* lib/* GNUmakefile maint.mk\nCopyright: Copyright (C) 2001-2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: doc/gdoc\nCopyright: Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Simon Josefsson\n Copyright (c) 2001, 2002 Nikos Mavrogiannopoulos\n Copyright (c) 1998 Michael Zucchi\nLicense: GPL-3+\n\nFiles: lib/IdnaMappingTable.txt lib/DerivedNormalizationProps.txt tests/IdnaTest.txt\nCopyright: Copyright (c) 1991-2010 Unicode, Inc.\nLicense: Unicode\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General Public\n License version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General Public\n License version 2 can be found in /usr/share/common-licenses/GPL-2.\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 3 can be found in /usr/share/common-licenses/LGPL-3.\n\nLicense: Unicode\n For terms of use, see http://www.unicode.org/terms_of_use.html\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights reserved. Distributed\n under the Terms of Use in http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of the Unicode data files and any associated documentation\n (the \"Data Files\") or Unicode software and any associated\n documentation (the \"Software\") to deal in the Data Files or Software\n without restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, and/or sell copies of the\n Data Files or Software, and to permit persons to whom the Data Files\n or Software are furnished to do so, provided that (a) the above\n copyright notice(s) and this permission notice appear with all copies\n of the Data Files or Software, (b) both the above copyright notice(s)\n and this permission notice appear in associated documentation, and\n (c) there is clear notice in each modified Data File or in the\n Software as well as in the documentation associated with the Data\n File(s) or Software that the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\n ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY\n CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY\n DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\n WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE\n OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without prior\n written authorization of the copyright holder.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libidn2-0 at 2.3.3-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3686,6 +10635,31 @@
"content": "f2c48b367f9ec13f9aa577e7ccf81b371ce5d5fe22dddf9d7aa99f1e0bb7cfc4"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "custom",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: iptables\nUpstream-Contact: Netfilter Developer List <netfilter at vger.kernel.org>\nSource: https://www.netfilter.org/\n\nFiles: *\nCopyright: 2000-2002, the netfilter coreteam <coreteam at netfilter.org>\n Paul 'Rusty' Russell <rusty at rustcorp.com.au>\n Marc Boucher <marc+nf at mbsi.ca>\n James Morris <jmorris at intercode.com.au>\n Harald Welte <laforge at gnumonks.org>\n Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libebt_802_3.c\nCopyright: 2003 Chris Vitale <csv at bluetail.com>\nLicense: GPL-2\n\nFiles: extensions/libebt_ip.c extensions/libebt_log.c extensions/libebt_mark*.c\nCopyright: 2002 Bart De Schuymer <bdschuym at pandora.be>\nLicense: GPL-2\n\nFiles: extensions/libebt_limit.c\nCopyright: 2003 Tom Marshall <tommy at home.tig-grr.com>\nLicense: GPL-2\n\nFiles: extensions/libebt_nflog.c\nCopyright: 2008 Peter Warasin <peter at endian.com>\nLicense: GPL-2\n\nFiles: extensions/libip6t_DNAT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_DNPT.c\nCopyright: 2012-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_MASQUERADE.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_NETMAP.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_REDIRECT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_REJECT.c\nCopyright: 2000, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libip6t_SNAT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_SNPT.c\nCopyright: 2012-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_mh.c\nCopyright: 2006, USAGI/WIDE Project\nLicense: GPL-2\n\nFiles: extensions/libipt_CLUSTERIP.c\nCopyright: 2003, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ECN.c\nCopyright: 2002, by Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_REJECT.c\nCopyright: 2000, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libipt_TTL.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ULOG.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ttl.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_AUDIT.c\nCopyright: 2010-2011, Thomas Graf <tgraf at redhat.com>\n 2010-2011, Red Hat, Inc.\nLicense: GPL-2\n\nFiles: extensions/libxt_CHECKSUM.c\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\n 2010, Red Hat, Inc\nLicense: GPL-2\n\nFiles: extensions/libxt_CLASSIFY.c\nCopyright: 2003-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_CONNMARK.c\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_CONNSECMARK.c\nCopyright: 2006, Red Hat, Inc., James Morris <jmorris at redhat.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_CT.c\nCopyright: 2010-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_DSCP.c\nCopyright: 2000-2002, Matthew G. Marsh <mgm at paktronix.com>\n Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_HMARK.c\nCopyright: 2012, Hans Schillstrom <hans.schillstrom at ericsson.com>\n 2012, Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_IDLETIMER.c\nCopyright: 2010, Nokia Corporation\nLicense: GPL-2\n\nFiles: extensions/libxt_LED.c\nCopyright: 2008, Adam Nielsen <a.nielsen at shikadi.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_NFQUEUE.c\nCopyright: 2005, by Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_RATEEST.c\nCopyright: 2008-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_SECMARK.c\nCopyright: 2006, Red Hat, Inc., James Morris <jmorris at redhat.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_SET.c\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2010, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libxt_SYNPROXY.c\nCopyright: 2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_TCPMSS.c\nCopyright: 2000, Marc Boucher\nLicense: GPL-2\n\nFiles: extensions/libxt_TCPOPTSTRIP.c\nCopyright: 2007, Sven Schnelle <svens at bitebene.org>\n 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_TEE.c\nCopyright: 2007, Sebastian Cla\u00dfen <sebastian.classen [at] freenet.ag>\n 2007-2010, Jan Engelhardt <jengelh [at] medozas de>\nLicense: GPL-2\n\nFiles: extensions/libxt_TOS.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_TPROXY.c\nCopyright: 2002-2008, BalaBit IT Ltd.\nLicense: GPL-2\n\nFiles: extensions/libxt_addrtype.c\nCopyright: 2003-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_bpf.c\nCopyright: 2013, Google, Inc.\nLicense: GPL-2\n\nFiles: extensions/libxt_cluster.c\nCopyright: 2009, Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_connmark.c\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_conntrack.c\nCopyright: 2001, Marc Boucher (marc at mbsi.ca).\n 2007-2008, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_dccp.c\nCopyright: 2005, by Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_devgroup.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_dscp.c\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_ecn.c\nCopyright: 2002, Harald Welte <laforge at netfilter.org>\n 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_hashlimit.c\nCopyright: 2003-2004, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_osf.c\nCopyright: 2003+, Evgeniy Polyakov <zbr at ioremap.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_owner.c\nCopyright: 2007-2008, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_policy.c\nCopyright: 2005-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_rateest.c\nCopyright: 2008-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_sctp.c\nCopyright: 2003, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_set.c\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2010, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libxt_socket.c\nCopyright: 2007, BalaBit IT Ltd.\nLicense: GPL-2\n\nFiles: extensions/libxt_statistic.c\nCopyright: 2006-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_string.c\nCopyright: 2000, Emmanuel Roger <winfield at freegates.be>\n 2005-08-05, Pablo Neira Ayuso <pablo at eurodev.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_time.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_tos.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_u32.c\nCopyright: 2002, Don Cohen <don-netf at isis.cs3-inc.com>\n 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: include/linux/netfilter/ipset/ip_set.h\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2011, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_AUDIT.h\nCopyright: 2010-2011, Thomas Graf <tgraf at redhat.com>\n 2010-2011, Red Hat, Inc.\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_CHECKSUM.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\n 2010, Red Hat Inc\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_DSCP.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_IDLETIMER.h\nCopyright: 2004, 2010, Nokia Corporation\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_NFQUEUE.h\nCopyright: 2005, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_connmark.h\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_conntrack.h\nCopyright: 2001, Marc Boucher (marc at mbsi.ca)\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_dscp.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_ecn.h\nCopyright: 2002, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_osf.h\nCopyright: 2003+, Evgeniy Polyakov <johnpol at 2ka.mxt.ru>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4.h\nCopyright: 1998, Rusty Russell\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ip_queue.h\nCopyright: 2000, James Morris\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ECN.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_TTL.h\nCopyright: 2000, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ULOG.h\nCopyright: 2000-2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ttl.h\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv6.h\nCopyright: 1998, Rusty Russell\n 1999, David Jeffery\nLicense: GPL-2\n\nFiles: iptables/iptables-apply\nCopyright: 2006, Martin F. Krafft <madduck at madduck.net>\n 2010, GW <gw.2010 at tnode.com or http://gw.tnode.com/>\nLicense: Artistic\n\nFiles: iptables/iptables-save.c\nCopyright: 1999, Paul 'Rusty' Russell <rusty at rustcorp.com.au>\n 2000-2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: iptables/iptables-xml.c\nCopyright: 2006, Ufo Mechanic <azez at ufomechanic.net>\nLicense: GPL-2\n\nFiles: iptables/nft.c\nCopyright: 2012 Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2+\n\nFiles: iptables/nft-arp.c\nCopyright: 2013 Pablo Neira Ayuso <pablo at netfilter.org>\n 2013 Giuseppe Longo <giuseppelng at gmail.com>\nLicense: GPL-2+\n\nFiles: iptables/nft-bridge.c\nCopyright: 2014 Giuseppe Longo <giuseppelng at gmail.com>\nLicense: GPL-2+\n\nFiles: iptables/nft-ipv4.c iptables/nft-ipv6.c iptables/nft-shared.c\nCopyright: 2012-2013 Pablo Neira Ayuso <pablo at netfilter.org>\n 2013 Tomasz Bursztyka <tomasz.bursztyka at linux.intel.com>\nLicense: GPL-2+\n\nFiles: iptables/xtables-arp.c iptables/xtables-eb.c\nCopyright: 2002 Bart De Schuymer <bdschuym at pandora.be>\nLicense: GPL-2+\n\nFiles: libiptc/libip4tc.c\nCopyright: 1999, Paul ``Rusty'' Russell\nLicense: GPL-2\n\nFiles: libiptc/libip6tc.c\nCopyright: 1999, Paul ``Rusty'' Russell\nLicense: GPL-2\n\nFiles: libiptc/libiptc.c\nCopyright: 1999, Paul ``Rusty'' Russell\n 2000-2004, by the Netfilter Core Team <coreteam at netfilter.org>\n 2003, 2004, Harald Welte <laforge at netfilter.org>\n 2008, Jesper Dangaard Brouer <hawk at comx.dk>\nLicense: GPL-2\n\nFiles: libxtables/xtables.c\nCopyright: 2000-2006, by the netfilter coreteam <coreteam at netfilter.org>\nLicense: GPL-2\n\nFiles: libxtables/xtoptions.c\nCopyright: 2011, Jan Engelhardt\nLicense: GPL-2\n\nFiles: utils/nfsynproxy.c\nCopyright: 2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: utils/pf.os\nCopyright: 2000-2003, Michal Zalewski <lcamtuf at coredump.cx>\n 2003, Mike Frantzen <frantzen at w4g.org>\nLicense: custom\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n\nLicense: GPL-2\n This program is free software; you can redistribute it\n and/or modify it under the terms of the GNU General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later\n version.\n .\n This program is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied\n warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. See the GNU General Public License for more\n details.\n .\n You should have received a copy of the GNU General Public\n License along with this package; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n Boston, MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n On Debian systems, the full text can be found in the file \"/usr/share/common-licenses/Artistic\"\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libip4tc2 at 1.8.9-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3702,6 +10676,13 @@
"content": "3fc9742f9f1a37bcb9931df6074b4d1483419ef832ad5349f47323e75fc27864"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libjansson4 at 2.14-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3718,6 +10699,13 @@
"content": "d0e1ed8637d1c26b9720f6057d6355f18378bba5cc2553e459d1632783c00d70"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libjson-c5 at 0.16-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3734,6 +10722,13 @@
"content": "6a91eee690e6ad2207df3a355fc329a58d8e31bf5ca9a9dd4de8f7a1c812ddc5"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libk5crypto3 at 1.20.1-2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3750,6 +10745,18 @@
"content": "cfac89e6a7a54ff3c6a4f843310e25efeddaa771baeae470bd98bd588c373563"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkeyutils1 at 1.6.3-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3766,6 +10773,18 @@
"content": "af63bbbfc15fbd1f254b15c393b3b95b18b18cc81348fc1b4f1c9c34b4d672d7"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkmod2 at 30+20221128-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3782,6 +10801,18 @@
"content": "03ebdf235600f4a8a6d4fbc7080de0a776b1a701f43c4e9697944757591d7809"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkrb5-3 at 1.20.1-2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3798,6 +10829,18 @@
"content": "e489a9282c4b765c29d9eda7c4747e1cb58be71161012c3a57e2a8bc63dc0f5a"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkrb5support0 at 1.20.1-2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3814,6 +10857,16 @@
"content": "fe524a9de7ed6b2a1465693f12d5f7be2d2d9f6d6e6bf028f17109263e173dc8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Locale-gettext\nUpstream-Contact: Phillip Vandry <vandry at TZoNE.ORG>\nSource: https://metacpan.org/release/gettext\n\nFiles: *\nCopyright: 1996-2005, Phillip Vandry <vandry at TZoNE.ORG>\nLicense: Artistic or GPL-1+\n\nFiles: debian/*\nCopyright: 1998-2009, Rapha\u00ebl Hertzog <hertzog at debian.org>\n 2008, Niko Tyni <ntyni at debian.org>\n 2010-2011, gregor herrmann <gregoa at debian.org>\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/liblocale-gettext-perl at 1.07-5?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3830,6 +10883,26 @@
"content": "64cde86cef1deaf828bd60297839b59710b5cd8dc50efd4f12643caaee9389d3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later OR BSD-2-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: lz4\nSource: https://github.com/lz4/lz4\n\nFiles: *\nCopyright: 2011-2020, Yann Collet.\nLicense: BSD-2-clause\n\nFiles: programs/bench.c\n programs/bench.h\n programs/datagen.c\n programs/datagen.h\n tests/datagencli.c\n tests/fullbench.c\n tests/fuzzer.c\n examples/Makefile\n programs/Makefile\n programs/lz4cli.c\n programs/lz4io.c\n programs/lz4io.h\n tests/Makefile\n ossfuzz/Makefile\n lib/dll/example/Makefile\n tests/checkTag.c\nCopyright: Yann Collet 2011-2020\nLicense: GPL-2+\n\nFiles: lib/lz4file.c\n lib/lz4file.h\nCopyright: 2022, Xiaomi Inc.\nLicense: BSD-2-clause\n\nFiles: programs/platform.h\n programs/util.h\nCopyright: 2016-2020, Przemyslaw Skibinski, Yann Collet\nLicense: GPL-2+\n\nFiles: tests/checkFrame.c\n tests/frametest.c\nCopyright: Yann Collet 2014-2020\nLicense: GPL-2+\n\nFiles: examples/compress_functions.c\n examples/simple_buffer.c\nCopyright: Kyle Harper\nLicense: BSD-2-clause\n\nFiles: tests/abiTest.c\n tests/roundTripTest.c\nCopyright: 2016-2020, Yann Collet, Facebook, Inc.\nLicense: GPL-2+ or BSD-2-clause\n\nFiles: contrib/djgpp/*\nCopyright: 2015, Louis P. Santillan <lpsantil at gmail.com>\nLicense: BSD-2-clause\n\nFiles: tests/test-lz4-speed.py\nCopyright: 2016-2020, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.\nLicense: BSD-2-clause\n\nFiles: examples/blockStreaming_lineByLine.c\n examples/blockStreaming_doubleBuffer.c\n examples/printVersion.c\nCopyright: Takayuki Matsuoka\nLicense: BSD-2-clause\n\nFiles: debian/*\nCopyright: 2013 - 2022 Nobuhiro Iwamatsu <iwamatsu at debian.org>\nLicense: GPL-2+\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n .\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are \n met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" \n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, \n THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT \n OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/liblz4-1 at 1.9.4-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3846,6 +10919,95 @@
"content": "d4b7736e58512a2b047f9cb91b71db5a3cf9d3451192fc6da044c77bf51fe869"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "PD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "probably-PD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "permissive-fsf",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Autoconf",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "permissive-nowarranty",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "none",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "config-h",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "noderivs",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "PD-debian",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: XZ Utils\nUpstream-Contact:\n Lasse Collin <lasse.collin at tukaani.org>\n https://tukaani.org/xz/lists.html\nSource:\n https://tukaani.org/xz\n https://git.tukaani.org/xz.git\nComment:\n XZ Utils is developed and maintained upstream by Lasse Collin. Major\n portions are based on code by other authors; see AUTHORS for details.\n Most of the source has been put into the public domain, but some files\n have not (details below).\n .\n This file describes the source package. The binary packages contain\n some files derived from other works: for example, images in the API\n documentation come from Doxygen.\nLicense:\n Different licenses apply to different files in this package. Here\n is a rough summary of which licenses apply to which parts of this\n package (but check the individual files to be sure!):\n .\n - liblzma is in the public domain.\n .\n - xz, xzdec, and lzmadec command line tools are in the public\n domain unless GNU getopt_long had to be compiled and linked\n in from the lib directory. The getopt_long code is under\n GNU LGPLv2.1+.\n .\n - The scripts to grep, diff, and view compressed files have been\n adapted from gzip. These scripts and their documentation are\n under GNU GPLv2+.\n .\n - All the documentation in the doc directory and most of the\n XZ Utils specific documentation files in other directories\n are in the public domain.\n .\n - Translated messages are in the public domain.\n .\n - The build system contains public domain files, and files that\n are under GNU GPLv2+ or GNU GPLv3+. None of these files end up\n in the binaries being built.\n .\n - Test files and test code in the tests directory, and debugging\n utilities in the debug directory are in the public domain.\n .\n - The extra directory may contain public domain files, and files\n that are under various free software licenses.\n .\n You can do whatever you want with the files that have been put into\n the public domain. If you find public domain legally problematic,\n take the previous sentence as a license grant. If you still find\n the lack of copyright legally problematic, you have too many\n lawyers.\n .\n As usual, this software is provided \"as is\", without any warranty.\n .\n If you copy significant amounts of public domain code from XZ Utils\n into your project, acknowledging this somewhere in your software is\n polite (especially if it is proprietary, non-free software), but\n naturally it is not legally required. Here is an example of a good\n notice to put into \"about box\" or into documentation:\n .\n This software includes code from XZ Utils <http://tukaani.org/xz/>.\n .\n The following license texts are included in the following files:\n - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1\n - COPYING.GPLv2: GNU General Public License version 2\n - COPYING.GPLv3: GNU General Public License version 3\n .\n Note that the toolchain (compiler, linker etc.) may add some code\n pieces that are copyrighted. Thus, it is possible that e.g. liblzma\n binary wouldn't actually be in the public domain in its entirety\n even though it contains no copyrighted code from the XZ Utils source\n package.\n .\n If you have questions, don't hesitate to ask the author(s) for more\n information.\n\nFiles: *\nCopyright: 2006-2018, Lasse Collin\n 1999-2008, Igor Pavlov\n 2006, Ville Koskinen\n 1998, Steve Reid\n 2000, Wei Dai\n 2003, Kevin Springle\n 2009, Jonathan Nieder\n 2010, Anders F Bj\u00f6rklund\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\nComment:\n From: Lasse Collin <lasse.collin at tukaani.org>\n To: Jonathan Nieder <jrnieder at gmail.com>\n Subject: Re: XZ utils for Debian\n Date: Sun, 19 Jul 2009 13:28:23 +0300\n Message-Id: <200907191328.23816.lasse.collin at tukaani.org>\n .\n [...]\n .\n > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,\n > dos/README, windows/README\n .\n COPYING says that most docs are in the public domain. Maybe that's not\n clear enough, but on the other hand it looks a bit stupid to put\n copyright information in tiny and relatively small docs like README.\n .\n I don't dare to say that _all_ XZ Utils specific docs are in the public\n domain unless otherwise mentioned in the file. I'm including PDF files\n generated by groff + ps2pdf, and some day I might include Doxygen-\n generated HTML docs too. Those don't include any copyright notices, but\n it seems likely that groff + ps2pdf or at least Doxygen put some\n copyrighted content into the generated files.\n\nFiles: INSTALL NEWS PACKAGERS\n windows/README-Windows.txt\n windows/INSTALL-MinGW.txt\nCopyright: 2009-2010, Lasse Collin\nLicense: probably-PD\n See the note on AUTHORS, README, and so on above.\n\nFiles: src/scripts/* lib/* extra/scanlzma/scanlzma.c\nCopyright: \u00a9 1993, Jean-loup Gailly\n \u00a9 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.\n \u00a9 2006 Timo Lindfors\n 2005, Charles Levert\n 2005, 2009, Lasse Collin\n 2009, Andrew Dudman\nOther-Authors: Paul Eggert, Ulrich Drepper\nLicense: GPL-2+\n\nFiles: src/scripts/Makefile.am src/scripts/xzless.1\nCopyright: 2009, Andrew Dudman\n 2009, Lasse Collin\nLicense: PD\n This file has been put in the public domain.\n You can do whatever you want with this file.\n\nFiles: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c\nCopyright: 2010, Daniel Mealha Cabrita\nLicense: PD\n Not copyrighted -- provided to the public domain.\n\nFiles: lib/getopt.c lib/getopt1.c lib/getopt.in.h\nCopyright: \u00a9 1987-2007 Free Software Foundation, Inc.\nOther-Authors: Ulrich Drepper\nLicense: LGPL-2.1+\n\nFiles: m4/getopt.m4 m4/posix-shell.m4\nCopyright: \u00a9 2002-2006, 2008 Free Software Foundation, Inc.\n \u00a9 2007-2008 Free Software Foundation, Inc.\nOther-Authors: Bruno Haible, Paul Eggert\nLicense: permissive-fsf\n\nFiles: m4/acx_pthread.m4\nCopyright: \u00a9 2008, Steven G. Johnson <stevenj at alum.mit.edu>\nLicense: Autoconf\n\nfiles: m4/ax_check_capsicum.m4\nCopyright: \u00a9 2014, Google Inc.\n \u00a9 2015, Lasse Collin <lasse.collin at tukaani.org>\nLicense: permissive-nowarranty\n\nFiles: Doxyfile.in\nCopyright: \u00a9 1997-2007 by Dimitri van Heesch\nOrigin: Doxygen 1.4.7\nLicense: GPL-2\n\nFiles: src/liblzma/check/crc32_table_?e.h\n src/liblzma/check/crc64_table_?e.h\n src/liblzma/lzma/fastpos_table.c\n src/liblzma/rangecoder/price_table.c\nCopyright: none, automatically generated data\nGenerated-With:\n src/liblzma/check/crc32_tablegen.c\n src/liblzma/check/crc64_tablegen.c\n src/liblzma/lzma/fastpos_tablegen.c\n src/liblzma/rangecoder/price_tablegen.c\nLicense: none\n No copyright to license.\n\nFiles: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in\nCopyright: none; these are just short lists.\nLicense: none\n No copyright to license.\n\nFiles: tests/compress_prepared_bcj_*\nCopyright: 2008-2009, Lasse Collin\nSource-Code: tests/bcj_test.c\nLicense: PD\n This file has been put into the public domain.\n You can do whatever you want with this file.\nComment:\n changelog.gz (commit 975d8fd) explains:\n .\n Recreated the BCJ test files for x86 and SPARC. The old files\n were linked with crt*.o, which are copyrighted, and thus the\n old test files were not in the public domain as a whole. They\n are freely distributable though, but it is better to be careful\n and avoid including any copyrighted pieces in the test files.\n The new files are just compiled and assembled object files,\n and thus don't contain any copyrighted code.\n\nFiles: po/cs.po po/de.po po/fr.po\nCopyright: 2010, Marek \u010cernock\u00fd\n 2010, Andre Noll\n 2011, Adrien Nader\nLicense: PD\n This file is put in the public domain.\n\nFiles: po/it.po po/pl.po\nCopyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it\n 2010, Lorenzo De Liso\n 2009, 2010, 2011, Milo Casagrande\n 2011, Jakub Bogusz\nLicense: PD\n This file is in the public domain\n\nFiles: INSTALL.generic\nCopyright: \u00a9 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,\n 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\nLicense: permissive-nowarranty\n\nFiles: dos/config.h\nCopyright: \u00a9 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005\n Free Software Foundation, Inc.\n 2007-2010, Lasse Collin\nOther-Authors: Roland McGrath, Akim Demaille, Paul Eggert,\n David Mackenzie, Bruno Haible, and many others.\nOrigin: configure.ac from XZ Utils,\n visibility.m4 serial 1 (gettext-0.15),\n Autoconf 2.52g\nLicense: config-h\n configure.ac:\n .\n # Author: Lasse Collin\n #\n # This file has been put into the public domain.\n # You can do whatever you want with this file.\n .\n visibility.m4:\n .\n dnl Copyright (C) 2005 Free Software Foundation, Inc.\n dnl This file is free software; the Free Software Foundation\n dnl gives unlimited permission to copy and/or distribute it,\n dnl with or without modifications, as long as this notice is preserved.\n .\n dnl From Bruno Haible.\n .\n comments from Autoconf 2.52g:\n .\n # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002\n # Free Software Foundation, Inc.\n .\n [...]\n .\n # As a special exception, the Free Software Foundation gives unlimited\n # permission to copy, distribute and modify the configure scripts that\n # are the output of Autoconf. You need not follow the terms of the GNU\n # General Public License when using or distributing such scripts, even\n # though portions of the text of Autoconf appear in them. The GNU\n # General Public License (GPL) does govern all other use of the material\n # that constitutes the Autoconf program.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n dos/config.h was generated with autoheader, which tells Autoconf to\n output a script to generate a config.h file and then runs it.\n\nFiles: po/Makevars\nOrigin: gettext-runtime/po/Makevars (gettext-0.12)\nCopyright: \u00a9 2003 Free Software Foundation, Inc.\nAuthors: Bruno Haible\nLicense: LGPL-2.1+\n The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0\n and intl/COPYING.LIB-2.1.\n .\n On Debian systems, the complete text of intl/COPYING.LIB-2.0 from\n gettext-runtime 0.12 can be found in \u2018/usr/share/common-licenses/LGPL-2\u2019\n and the text of intl/COPYING.LIB-2.1 can be found in\n \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n .\n po/Makevars consists mostly of helpful comments and does not contain a\n copyright and license notice.\n\nFiles: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1\nCopyright: \u00a9 1989, 1991, 1999, 2007 Free Software Foundation, Inc.\nLicense: noderivs\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nFiles: debian/*\nCopyright: 2009-2012, Jonathan Nieder\nLicense: PD-debian\n The Debian packaging files are in the public domain.\n You may freely use, modify, distribute, and relicense them.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: GPL-2\n Permission to use, copy, modify, and distribute this software and its\n documentation under the terms of the GNU General Public License is\n hereby granted. No representations are made about the suitability of\n this software for any purpose. It is provided \"as is\" without express\n or implied warranty. See the GNU General Public License for more\n details.\n .\n Documents produced by doxygen are derivative works derived from the\n input used in their production; they are not affected by this license.\n .\n On Debian systems, the complete text of the version of the GNU General\n Public License distributed with Doxygen can be found in\n \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in \u2018/usr/share/common-licenses/GPL-2\u2019.\n\nLicense: Autoconf\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU General Public License as published by the\n Free Software Foundation, either version 3 of the License, or (at your\n option) any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\n Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, the respective Autoconf Macro's copyright owner\n gives unlimited permission to copy, distribute and modify the configure\n scripts that are the output of Autoconf when processing the Macro. You\n need not follow the terms of the GNU General Public License when using\n or distributing such scripts, even though portions of the text of the\n Macro appear in them. The GNU General Public License (GPL) does govern\n all other use of the material that constitutes the Autoconf Macro.\n .\n This special exception to the GPL applies to versions of the Autoconf\n Macro released by the Autoconf Archive. When you make and distribute a\n modified version of the Autoconf Macro, you may extend this special\n exception to the GPL to apply to your modified version as well.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in \u2018/usr/share/common-licenses/GPL-3\u2019.\n\nLicense: permissive-fsf\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nLicense: permissive-nowarranty\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/liblzma5 at 5.4.1-0.2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3862,6 +11024,68 @@
"content": "03539fd30c509e27101d13a56e52eda9062bdf1aefe337c07ab56def25a13eab"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-Aaron-D-Gifford",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-2-clause-NetBSD",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ },
+ {
+ "license": {
+ "name": "public-domain-md4",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "public-domain-md5",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "public-domain-sha1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\n\nFiles:\n *\nCopyright:\n Copyright \u00a9 2009, 2011, 2016 Guillem Jover <guillem at hadrons.org>\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL\n THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\n OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n include/sha2.h\n src/sha2.c\nCopyright:\n Copyright \u00a9 2000-2001, Aaron D. Gifford\n All rights reserved.\nLicense: BSD-3-clause-Aaron-D-Gifford\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the copyright holder nor the names of contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTOR(S) ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles:\n include/rmd160.h\n src/rmd160.c\nCopyright:\n Copyright \u00a9 2001 Markus Friedl. All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n src/md2.c\nCopyright:\n Copyright (c) 2001 The NetBSD Foundation, Inc.\n All rights reserved.\n .\n This code is derived from software contributed to The NetBSD Foundation\n by Andrew Brown.\nLicense: BSD-2-clause-NetBSD\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\n BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nFiles:\n man/rmd160.3\n man/sha1.3\n man/sha2.3\nCopyright:\n Copyright \u00a9 1997, 2003, 2004 Todd C. Miller <Todd.Miller at courtesan.com>\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles:\n man/mdX.3\n src/helper.c\nCopyright:\n Poul-Henning Kamp <phk at login.dkuug.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dkuug.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n\nFiles:\n include/md4.h\n src/md4.c\nCopyright:\n Colin Plumb\n Todd C. Miller\nLicense: public-domain-md4\n This code implements the MD4 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n Todd C. Miller modified the MD5 code to do MD4 based on RFC 1186.\n\nFiles:\n include/md5.h\n src/md5.c\nCopyright:\n Colin Plumb\nLicense: public-domain-md5\n This code implements the MD5 message-digest algorithm.\n The algorithm is due to Ron Rivest. This code was\n written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles:\n include/sha1.h\n src/sha1.c\nCopyright:\n Steve Reid <steve at edmweb.com>\nLicense: public-domain-sha1\n 100% Public Domain\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libmd0 at 1.0.4-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3878,6 +11102,18 @@
"content": "4581f42e3373cb72f9ea4e88163b17873afca614a6c6f54637e95aa75983ea7c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libmnl0 at 1.0.4-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3894,6 +11130,71 @@
"content": "a259d82ccbcfa230b492752d8d525d0a40d7938bf62fb90e83e16048ee88bf83"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libmount1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3910,6 +11211,26 @@
"content": "98fa7a53dc565a38b65fb70422ad08001bf5361d8fbc74255280c329996a6bec"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "MIT/X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: ncurses\nUpstream-Contact: bug-ncurses at gnu.org\n Thomas Dickey <dickey at his.com>\nSource: https://invisible-mirror.net/archives/ncurses/\n\nFiles: *\nCopyright: 1998-2017,2018 Free Software Foundation, Inc.\n 1996-2020,2021 Thomas E. Dickey\n 2001 Pradeep Padala\nLicense: MIT/X11\n\nFiles: install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n\nFiles: progs/tset.c ncurses/tinfo/read_termcap.c\nCopyright: 1980,1991,1992,1993 The Regents of the University of California\nLicense: BSD-3-clause\n\nLicense: MIT/X11\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, distribute with modifications, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name(s) of the above copyright\n holders shall not be used in advertising or otherwise to promote the\n sale, use or other dealings in this Software without prior written\n authorization.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libncursesw6 at 6.4-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3926,6 +11247,59 @@
"content": "45922e6e289ffd92f0f92d2bb9159e84236ff202d552a461bf10e5335b3f0261"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Nettle\nUpstream-Contact: Niels M\u00f6ller <nisse at lysator.liu.se>\nSource: http://www.lysator.liu.se/~nisse/nettle/\nCopyright: \u00a9 2001-2020 Niels M\u00f6ller\n Some parts are Copyright \u00a9 the Free Software Foundation and various\n people. See below and source code comments for details.\nLicense: LGPL-3+ or GPL-2+\nComment:\n Nettle is dual licenced under the GNU General Public License version\n 2 or later, and the GNU Lesser General Public License version 3 or\n later. When using Nettle, you must comply fully with all conditions\n of at least one of these licenses. A few of the individual files are\n licensed under more permissive terms, or in the public domain. To\n find the current status of particular files, you have to read the\n copyright notices at the top of the files.\n .\n 8X--------- AUTHORS file -----------------------------------------\n Authors of GNU Nettle\n .\n The oldest code in Nettle was copied into precursors of the Nettle\n library from other public domain or LGPLv2 sources.\n .\n Steve Reid\t\tOriginal CAST128 implementation\n Dana L. How\t\tOriginal DES implementation,\n Colin Plumb\t\tOriginal MD5 implementation\n Peter Gutmann\t\tOriginal SHA1 implementation\n Andrew Kuchling\t\tOriginal MD2 implementation\n .\n Free Software Foundation\n \t\t\tHolds copyrights on code ported from\n \t\t\tlibgcrypt, written by Werner Koch and others.\n .\n J.H.M. Dassen\t\tOriginal port of blowfish to GNU lsh, later\n \t\t\tsplit off into Nettle. (This blowfish\n \t\t\timplementation was replaced later).\n \t\t\tTwofish tests.\n .\n Ruud de Rooij\t\tTwofish implementation for GNU lsh, later split off into Nettle.\n .\n Rafael Sevilla\t\tAES C and x86 implementation, original port of\n \t\t\tSerpent, for GNU lsh, later split off into Nettle.\n .\n Authors of Nettle (in roughly chronological order of initial contribution)\n .\n Niels M\u00f6ller\t\tMain author.\n .\n Dan Egnor\t\tBase64 conversion.\n .\n Andreas Sigfridsson\tPort of MD2, from Andrew Kuchling's python\n \t\t\tcryptography toolkit.\n .\n Marcus Comstedt\t\tImplemented MD4.\n .\n D. J. Bernstein\t\tSalsa20 public domain reference implementation.\n .\n Simon Josefsson\t\tPort of Arctwo, from GnuTLS and libgcrypt. New\n \t\t\tports of LGPL Serpent and Blowfish code, from\n \t\t\tlibgcrypt. Port of Salsa20, based on djb's\n \t\t\treference. Implementation of PBKDF2 (RFC\n \t\t\t2898).\n .\n Henrik Grubbstr\u00f6m\tAES assembly for Sparc64.\n .\n Magnus Holmgren\t\tConversion of DSA keys from DER format to SEXP\n \t\t\tformat.\n .\n Daniel Kahn Gillmor\tAdded the lists for nettle_get_ciphers,\n \t\t\tnettle_get_hashes and nettle_get_armors. Test\n \t\t\tvectors for hashes and hmac.\n .\n Nippon Telegraph and Telephone Corporation\n \t\t\tLGPL:ed reference implementation of the\n \t\t\tCamellia cipher.\n .\n Andrew M. (floodyberry)\n \t\t\tThe poly1305 code nettle's C implementation is\n \t\t\tderived from.\n .\n Aleksey Kravchenko\tThe gosthash94 implementation in rhash library.\n .\n Stefan Metzmacher, Jeremy Allison, Michael Adam\n \t\t\tContributed to the CMAC code, which was added\n \t\t\tto Nettle by Nikos Mavroyanopoulos.\n .\n Nikos Mavroyanopoulos\tGCM implementation, RSA blinding code,\n \t\t\tinterface for general rsa-pkcs1 signatures.\n \t\t\tPort of gosthash94 implementation from rhash. Port of\n \t\t\tpoly1305. Salsa20r12 variant. HKDF (RFC 5869)\n \t\t\timplementation. CMAC and SIV-CMAV\n \t\t\timplementation. CTR and GCM optimizations.\n \t\t\tImplementation of versioned symbols. Setup of\n \t\t\t.gitlab-ci.yml. Large number of smaller fixes.\n .\n Andres Mejia\t\tPorted Ripemd160 from libgcrypt.\n .\n Martin Storsj\u00f6\t\tImplemented m4 macrology to make x86_64\n \t\t\tassembly files work with the windows ABI.\n \t\t\tSeveral other portability improvements.\n .\n Jeronimo Pellegrini\tDocumentation for base16 and base64 functions.\n .\n Tim Ruehsen\t\tSeveral smaller cleanups and bugfixes.\n .\n Fredrik Thulin\t\tTest vectors for pbkdf2-hmac-sha512.\n .\n Joachim Str\u00f6mbergson\tChacha implementation. Support for sha512_224\n \t\t\tand sha512_256.\n .\n Owen Kirby\t\tImplementation of CCM mode.\n .\n Amos Jeffries\t\tImplementation of base64url encoding.\n .\n Daiki Ueno\t\tImplementation of RSA-PSS signatures,\n \t\t\tcurve448, shake256, ed448-shake256 signatures,\n \t\t\tchacha functions for 32-bit nonce, struct\n \t\t\tnettle_mac interface.\n .\n Dmitry Baryshkov\tCFB and CFB8 modes, CMAC64. gosthash94cp and\n \t\t\tStreebog hash functions, GOST DSA signatures\n \t\t\tand curves GC256B and GC512A. Various bug\n \t\t\tfixes and cleanups.\n .\n Simo Sorce\t\tSide-channel silent RSA functions. XTS\n \t\t\timplementation.\n .\n H.J. Lu\t\t\tAssembly annotations for Intel \"Control-flow\n \t\t\tEnforcement Technology\".\n .\n Stephen R. van den Berg\n \t\t\tPort of bcrypt.\n .\n Mamone Tarsha Kurdi\tPowerpc64 assembly and fat build setup,\n \t\t\tincluding AES and GCM. Arm64 assembly and fat\n \t\t\tbuild setup, including AES, Chacha, GCM, SHA1,\n \t\t\tSHA256. S390x assembly and fat build setup,\n \t\t\tincluding AES, Chacha, memxor, memxor3, SHA1,\n \t\t\tSHA256, SHA512, SHA3.\n .\n Nicolas Mora\t\tRFC 3394 keywrap.\n .\n Tianjia Zhang\t\tSM3 hash function.\n .\n Amitay Isaacs\t\tPowerpc64 assembly for secp192r1, secp224r1\n \t\t\tand secp256r1.\n .\n Martin Schwenke\t\tPowerpc64 assembly for secp384r1, secp521r1,\n \t\t\tcurve25519 and curve448.\n 8X--------- end of AUTHORS file ------------------------------------\n\nFiles: *\nCopyright: 2001-2022 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: aes-invert-internal.c aes-set-decrypt-key.c\n aes-set-encrypt-key.c aes-set-key-internal.c\nCopyright: 2013, Niels M\u00f6ller\n 2000-2002, Rafael R. Sevilla, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: x86*/aes-*-internal.asm\nCopyright: 2001, 2002, 2005 Rafael R. Sevilla, Niels M\u00f6ller\n 2008, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.c\nCopyright: 2003 Nikos Mavroyanopoulos\n 2004 Simon Josefsson\n 2004 Free Software Foundation, Inc.\n 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo-meta.c pbkdf2.c\n salsa20-128-set-key.c salsa20-256-set-key.c\n salsa20-core-internal.c\n salsa20-set-key.c salsa20-set-nonce.c\nCopyright: 2012-2014 Niels M\u00f6ller\n 2004, 2012 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.h\n salsa20-internal.h salsa20.h\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/chacha-2core.asm arm64/chacha-4core.asm\n arm64/chacha-core-internal.asm s390x/vf/chacha-2core.asm\n s390x/vf/chacha-4core.asm s390x/vf/chacha-core-internal.asm\nCopyright: 2020 Niels M\u00f6ller and Torbj\u00f6rn Granlund\n 2022 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/aes128-decrypt.asm arm64/crypto/aes128-encrypt.asm\n arm64/crypto/aes192-decrypt.asm arm64/crypto/aes192-encrypt.asm\n arm64/crypto/aes256-decrypt.asm arm64/crypto/aes256-encrypt.asm\n arm64/crypto/sha1-compress.asm arm64/crypto/sha256-compress.asm\n arm64/fat/aes128-decrypt-2.asm arm64/fat/aes128-encrypt-2.asm\n arm64/fat/aes192-decrypt-2.asm arm64/fat/aes192-encrypt-2.asm\n arm64/fat/aes256-decrypt-2.asm arm64/fat/aes256-encrypt-2.asm\n arm64/fat/ghash-set-key-2.asm arm64/fat/ghash-update-2.asm\n arm64/fat/sha1-compress-2.asm arm64/fat/sha256-compress-2.asm\n fat-arm64.c fat-s390x.c powerpc64/fat/ghash-set-key-2.asm\n powerpc64/fat/ghash-update-2.asm s390x/fat/aes128-decrypt-2.asm\n s390x/fat/aes128-encrypt-2.asm s390x/fat/aes128-set-decrypt-key-2.asm\n s390x/fat/aes128-set-encrypt-key-2.asm\n s390x/fat/aes192-decrypt-2.asm s390x/fat/aes192-encrypt-2.asm\n s390x/fat/aes192-set-decrypt-key-2.asm\n s390x/fat/aes192-set-encrypt-key-2.asm s390x/fat/aes256-decrypt-2.asm\n s390x/fat/aes256-encrypt-2.asm s390x/fat/aes256-set-decrypt-key-2.asm\n s390x/fat/aes256-set-encrypt-key-2.asm s390x/fat/chacha-2core.asm\n s390x/fat/chacha-4core.asm s390x/fat/chacha-core-internal-2.asm\n s390x/fat/cpu-facility.asm s390x/fat/ghash-set-key-2.asm\n s390x/fat/ghash-update-2.asm s390x/fat/memxor3-2.asm\n s390x/fat/sha1-compress-2.asm s390x/fat/sha256-compress-2.asm\n s390x/fat/sha3-permute-2.asm s390x/fat/sha512-compress-2.asm\n s390x/memxor.asm s390x/msa/sha1-compress.asm\n s390x/msa_x1/aes128-decrypt.asm s390x/msa_x1/aes128-encrypt.asm\n s390x/msa_x1/aes128-set-decrypt-key.asm\n s390x/msa_x1/aes128-set-encrypt-key.asm s390x/msa_x1/sha256-compress.asm\n s390x/msa_x2/aes192-decrypt.asm s390x/msa_x2/aes192-encrypt.asm\n s390x/msa_x2/aes192-set-decrypt-key.asm\n s390x/msa_x2/aes192-set-encrypt-key.asm s390x/msa_x2/aes256-decrypt.asm\n s390x/msa_x2/aes256-encrypt.asm s390x/msa_x2/aes256-set-decrypt-key.asm\n s390x/msa_x2/aes256-set-encrypt-key.asm s390x/msa_x2/sha512-compress.asm\n s390x/msa_x4/ghash-set-key.asm s390x/msa_x4/ghash-update.asm\n s390x/vf/memxor3.asm\nCopyright: 2020, 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/ghash-set-key.asm arm64/crypto/ghash-update.asm\n powerpc64/p8/ghash-set-key.asm powerpc64/p8/ghash-update.asm\nCopyright: 2020 Niels M\u00f6ller and Mamone Tarsha\n 2021 Michael Weiser\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64.h base64-meta.c\nCopyright: 2002 Dan Egnor, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64url-decode.c base64url-encode.c\nCopyright: 2015 Amos Jeffries, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: block-internal.h\nCopyright: 2019 Dmitry Eremin-Solenikov\n 2018 Red Hat, Inc.\n 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\n 2010 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.h\nCopyright: 1998, 2001 Free Software Foundation, Inc.\n 1998, 2001 Ray Dassen\n 1998, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: camellia-table.c camellia-crypt-internal.c camellia.h camellia-internal.h\n camellia128-set-encrypt-key.c camellia256-set-encrypt-key.c camellia-absorb.c\nCopyright: 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2010, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ccm.c ccm.h ccm-aes128.c\n ccm-aes192.c ccm-aes256.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cfb.c\n cfb.h\n ecc-gostdsa-sign.c\n ecc-gostdsa-verify.c\n gostdsa-sign.c\n gostdsa-verify.c\nCopyright: 2015, 2017 Dmitry Eremin-Solenikov\n 2001, 2011, 2013, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: chacha-core-internal.c chacha-crypt.c\n chacha-internal.h chacha.h chacha-set-nonce.c\nCopyright: 2012 Simon Josefsson\n 2013 Joachim Str\u00f6mbergson\n 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-aes128.c cmac-aes256.c\n cmac.h hkdf.c hkdf.h\n xts-aes128.c xts-aes256.c xts.c\nCopyright: 2017, 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3-meta.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3.c\n ecc-gost-gc256b.c ecc-gost-gc512a.c\n gost28147-internal.h gostdsa-vko.c\n hmac-gosthash94.c pbkdf2-hmac-gosthash94.c\nCopyright: 2016-2020 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac.c cmac64.c\nCopyright: 2012 Stefan Metzmacher, Michael Adam, Jeremy Allison\n 2017 Red Hat Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ctr16.c\n pkcs1-internal.h pkcs1-sec-decrypt.c\n version.h.in xts.h\nCopyright: 2015, 2017, 2018 Red Hat, Inc.\n 2001, 2002, 2005-2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: curve448-eh-to-x.c curve448.h\n curve448-mul-g.c curve448-mul.c\n ecc-curve448.c ed448-shake256-pubkey.c\n ed448-shake256-sign.c ed448-shake256-verify.c\n shake256.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: der2dsa.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: desCode.h descore.README desdata.c\nCopyright: \u00a9 2002 Dana L. How\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Library General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Library\n General Public License, version 2, can be found in\n /usr/share/common-licenses/LGPL-2.\n\nFiles: des.c des.h\nCopyright: 1992 Dana L. How\n 1997, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: dsa2sexp.c\nCopyright: 2002, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: eccdata.c eddsa-hash.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\n 2013, 2014, 2017, 2019 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ecc-secp192r1.c\nCopyright: 2013, 2014, 2019, 2021 Niels M\u00f6ller\n 2019 Wim Lewis\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/base16dec.c examples/base16enc.c\n examples/base64dec.c examples/base64enc.c\nCopyright: 2006, 2012, Jeronimo Pellegrini, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/nettle-openssl.c\nCopyright: 2015, 2017, 2018, Red Hat, Inc.\n 2001, 2002, 2005-2018, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gcm.c gcm.h ghash-set-key.c ghash-update.c\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018, 2022 Niels M\u00f6ller\n 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gmp-glue.c\n gmp-glue.h\nCopyright: 2013 Red Hat, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gost28147.c gosthash94.c\nCopyright: 2019 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: Expat\n\nFiles: gostdsa.h\nCopyright: 2015, Dmity Eremin-Solenikov\n 2013, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94-meta.c\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94.h\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-md5-meta.c hmac-ripemd160-meta.c\n hmac-sha1-meta.c hmac-sha224-meta.c\n hmac-sha256-meta.c hmac-sha384-meta.c\n hmac-sha512-meta.c nettle-meta-macs.c\n pss-mgf1.c pss-mgf1.h pss.c pss.h\n rsa-pss-sha256-sign-tr.c rsa-pss-sha256-verify.c\n rsa-pss-sha512-sign-tr.c rsa-pss-sha512-verify.c\nCopyright: 2017, 2020 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-sm3.c hmac-sm3-meta.c\nCopyright: 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md2.c\nCopyright: ? Andrew Kuchling\n 2003 Andreas Sigfridsson\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md4.c\nCopyright: 2003 Marcus Comstedt\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md5.c md5-compress.c\nCopyright: Colin Plumb, Andrew Kuchling\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: memxor.c\nCopyright: 1991,1993, 1995 Free Software Foundation, Inc.\n 2010 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nettle-meta-armors.c\n nettle-meta-ciphers.c\n nettle-meta-hashes.c\nCopyright: 2011 Daniel Kahn Gillmor\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nist-keywrap.c nist-keywrap.h\nCopyright: 2021 Nicolas Mora\n 2021 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha1.c\n pbkdf2-hmac-sha256.c\n pbkdf2.h\n salsa20-crypt.c\nCopyright: 2012, Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha384.c pbkdf2-hmac-sha512.c\nCopyright: 2012 Simon Josefsson\n 2021 Nicolas Mora\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-aes.c\nCopyright: 2014 Niels M\u00f6ller\n 2013 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.c\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013 Niels M\u00f6ller\n 2012, 2013 Andrew M. (floodyberry)\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.h\n poly1305.h\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013, 2014, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-curve25519-modp.asm powerpc64/ecc-curve448-modp.asm\n powerpc64/ecc-secp521r1-modp.asm\nCopyright: 2021 Martin Schwenke & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp192r1-modp.asm powerpc64/ecc-secp224r1-modp.asm\nCopyright: 2021 Amitay Isaacs, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp256r1-redc.asm\nCopyright: 2021 Amitay Isaacs & Martin Schwenke, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp384r1-modp.asm\nCopyright: 2021 Martin Schwenke, Amitay Isaacs & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160.c ripemd160-compress.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160-meta.c ripemd160.h ripemd160-internal.h\nCopyright: 2011 Andres Mejia\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-blind.c rsa-decrypt-tr.c\nCopyright: 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-pkcs1-sign-tr.c salsa20r12-crypt.c\n siv-cmac-aes128.c siv-cmac-aes256.c\n siv-cmac.c siv-cmac.h\nCopyright: 2012, 2013, 2017, 2018, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-compute-root.c\nCopyright: 2018 Red Hat, Inc\n 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-decrypt.c\nCopyright: 2018, Red Hat, Inc.\n 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sign-tr.c\nCopyright: 2018, Red Hat Inc.\n 2012, Nikos Mavrogiannopoulos\n 2001, 2015, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: s390x/vf/sha3-permute.asm\nCopyright: 2012 Niels M\u00f6ller\n 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c serpent-internal.h\nCopyright: 1998 Ross Anderson, Eli Biham, Lars Knudsen\n 2003, 2004, 2005 Free Software Foundation, Inc.\n 2010, 2011 Simon Josefsson\n 2011, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha1-compress.c\nCopyright: 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha512.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sm3.c sm3.h sm3-meta.c\nCopyright: 2017 Jia Zhang\n 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/arctwo-test.c\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/ccm-test.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/chacha-test.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/curve448-dh-test.c\n testsuite/ed448-test.c\n testsuite/shake256-test.c\nCopyright: 2017, Red Hat, Inc.\n 2017, Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/siv-test.c\nCopyright: 2012, 2013, 2017, 2018 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: texinfo.tex\nCopyright: 1985, 1986, 1988, 1990-2009, Free Software Foundation, Inc.\nLicense: GPL-3+\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nFiles: twofish*\nCopyright: 1999 Ruud de Rooij <ruud at debian.org>\n 1999 J.H.M. Dassen (Ray) <jdassen at wi.LeidenUniv.nl>\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: tools/pkcs1-conv.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: getopt*\nCopyright: 1987-2001 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: config.guess config.sub\nCopyright: \u00a9 1992-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf exception\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program.\n\nFiles: debian/*\nCopyright: none\nLicense: public-domain\n I believe that most files in debian/ hardly contains any creative\n expression eligible for copyright.\n\nFiles: debian/sexp-conv.1\nCopyright: 2002 Timshel Knoll <timshel at debian.org>\n 2007 Magnus Holmgren\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June. 1991.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License, version 2, can be found in\n /usr/share/common-licenses/GPL-2.\nComment:\n This manpage was copied from the lsh-utils package. Timshel didn't\n explicitly select a license for his packaging work, but I think that\n it can be considered released under the same license as LSH itself.\n\nFiles: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1\nCopyright: 2007 Magnus Holmgren\nLicense: GAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved.\n\nLicense: LGPL-3+\n The nettle library is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\n License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, see http://www.gnu.org/licenses/.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU Lesser General Public License can be found in\n /usr/share/common-licenses/LGPL.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU General Public License can be found in\n /usr/share/common-licenses/GPL.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Autoconf exception"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GAP",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Nettle\nUpstream-Contact: Niels M\u00f6ller <nisse at lysator.liu.se>\nSource: http://www.lysator.liu.se/~nisse/nettle/\nCopyright: \u00a9 2001-2020 Niels M\u00f6ller\n Some parts are Copyright \u00a9 the Free Software Foundation and various\n people. See below and source code comments for details.\nLicense: LGPL-3+ or GPL-2+\nComment:\n Nettle is dual licenced under the GNU General Public License version\n 2 or later, and the GNU Lesser General Public License version 3 or\n later. When using Nettle, you must comply fully with all conditions\n of at least one of these licenses. A few of the individual files are\n licensed under more permissive terms, or in the public domain. To\n find the current status of particular files, you have to read the\n copyright notices at the top of the files.\n .\n 8X--------- AUTHORS file -----------------------------------------\n Authors of GNU Nettle\n .\n The oldest code in Nettle was copied into precursors of the Nettle\n library from other public domain or LGPLv2 sources.\n .\n Steve Reid\t\tOriginal CAST128 implementation\n Dana L. How\t\tOriginal DES implementation,\n Colin Plumb\t\tOriginal MD5 implementation\n Peter Gutmann\t\tOriginal SHA1 implementation\n Andrew Kuchling\t\tOriginal MD2 implementation\n .\n Free Software Foundation\n \t\t\tHolds copyrights on code ported from\n \t\t\tlibgcrypt, written by Werner Koch and others.\n .\n J.H.M. Dassen\t\tOriginal port of blowfish to GNU lsh, later\n \t\t\tsplit off into Nettle. (This blowfish\n \t\t\timplementation was replaced later).\n \t\t\tTwofish tests.\n .\n Ruud de Rooij\t\tTwofish implementation for GNU lsh, later split off into Nettle.\n .\n Rafael Sevilla\t\tAES C and x86 implementation, original port of\n \t\t\tSerpent, for GNU lsh, later split off into Nettle.\n .\n Authors of Nettle (in roughly chronological order of initial contribution)\n .\n Niels M\u00f6ller\t\tMain author.\n .\n Dan Egnor\t\tBase64 conversion.\n .\n Andreas Sigfridsson\tPort of MD2, from Andrew Kuchling's python\n \t\t\tcryptography toolkit.\n .\n Marcus Comstedt\t\tImplemented MD4.\n .\n D. J. Bernstein\t\tSalsa20 public domain reference implementation.\n .\n Simon Josefsson\t\tPort of Arctwo, from GnuTLS and libgcrypt. New\n \t\t\tports of LGPL Serpent and Blowfish code, from\n \t\t\tlibgcrypt. Port of Salsa20, based on djb's\n \t\t\treference. Implementation of PBKDF2 (RFC\n \t\t\t2898).\n .\n Henrik Grubbstr\u00f6m\tAES assembly for Sparc64.\n .\n Magnus Holmgren\t\tConversion of DSA keys from DER format to SEXP\n \t\t\tformat.\n .\n Daniel Kahn Gillmor\tAdded the lists for nettle_get_ciphers,\n \t\t\tnettle_get_hashes and nettle_get_armors. Test\n \t\t\tvectors for hashes and hmac.\n .\n Nippon Telegraph and Telephone Corporation\n \t\t\tLGPL:ed reference implementation of the\n \t\t\tCamellia cipher.\n .\n Andrew M. (floodyberry)\n \t\t\tThe poly1305 code nettle's C implementation is\n \t\t\tderived from.\n .\n Aleksey Kravchenko\tThe gosthash94 implementation in rhash library.\n .\n Stefan Metzmacher, Jeremy Allison, Michael Adam\n \t\t\tContributed to the CMAC code, which was added\n \t\t\tto Nettle by Nikos Mavroyanopoulos.\n .\n Nikos Mavroyanopoulos\tGCM implementation, RSA blinding code,\n \t\t\tinterface for general rsa-pkcs1 signatures.\n \t\t\tPort of gosthash94 implementation from rhash. Port of\n \t\t\tpoly1305. Salsa20r12 variant. HKDF (RFC 5869)\n \t\t\timplementation. CMAC and SIV-CMAV\n \t\t\timplementation. CTR and GCM optimizations.\n \t\t\tImplementation of versioned symbols. Setup of\n \t\t\t.gitlab-ci.yml. Large number of smaller fixes.\n .\n Andres Mejia\t\tPorted Ripemd160 from libgcrypt.\n .\n Martin Storsj\u00f6\t\tImplemented m4 macrology to make x86_64\n \t\t\tassembly files work with the windows ABI.\n \t\t\tSeveral other portability improvements.\n .\n Jeronimo Pellegrini\tDocumentation for base16 and base64 functions.\n .\n Tim Ruehsen\t\tSeveral smaller cleanups and bugfixes.\n .\n Fredrik Thulin\t\tTest vectors for pbkdf2-hmac-sha512.\n .\n Joachim Str\u00f6mbergson\tChacha implementation. Support for sha512_224\n \t\t\tand sha512_256.\n .\n Owen Kirby\t\tImplementation of CCM mode.\n .\n Amos Jeffries\t\tImplementation of base64url encoding.\n .\n Daiki Ueno\t\tImplementation of RSA-PSS signatures,\n \t\t\tcurve448, shake256, ed448-shake256 signatures,\n \t\t\tchacha functions for 32-bit nonce, struct\n \t\t\tnettle_mac interface.\n .\n Dmitry Baryshkov\tCFB and CFB8 modes, CMAC64. gosthash94cp and\n \t\t\tStreebog hash functions, GOST DSA signatures\n \t\t\tand curves GC256B and GC512A. Various bug\n \t\t\tfixes and cleanups.\n .\n Simo Sorce\t\tSide-channel silent RSA functions. XTS\n \t\t\timplementation.\n .\n H.J. Lu\t\t\tAssembly annotations for Intel \"Control-flow\n \t\t\tEnforcement Technology\".\n .\n Stephen R. van den Berg\n \t\t\tPort of bcrypt.\n .\n Mamone Tarsha Kurdi\tPowerpc64 assembly and fat build setup,\n \t\t\tincluding AES and GCM. Arm64 assembly and fat\n \t\t\tbuild setup, including AES, Chacha, GCM, SHA1,\n \t\t\tSHA256. S390x assembly and fat build setup,\n \t\t\tincluding AES, Chacha, memxor, memxor3, SHA1,\n \t\t\tSHA256, SHA512, SHA3.\n .\n Nicolas Mora\t\tRFC 3394 keywrap.\n .\n Tianjia Zhang\t\tSM3 hash function.\n .\n Amitay Isaacs\t\tPowerpc64 assembly for secp192r1, secp224r1\n \t\t\tand secp256r1.\n .\n Martin Schwenke\t\tPowerpc64 assembly for secp384r1, secp521r1,\n \t\t\tcurve25519 and curve448.\n 8X--------- end of AUTHORS file ------------------------------------\n\nFiles: *\nCopyright: 2001-2022 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: aes-invert-internal.c aes-set-decrypt-key.c\n aes-set-encrypt-key.c aes-set-key-internal.c\nCopyright: 2013, Niels M\u00f6ller\n 2000-2002, Rafael R. Sevilla, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: x86*/aes-*-internal.asm\nCopyright: 2001, 2002, 2005 Rafael R. Sevilla, Niels M\u00f6ller\n 2008, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.c\nCopyright: 2003 Nikos Mavroyanopoulos\n 2004 Simon Josefsson\n 2004 Free Software Foundation, Inc.\n 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo-meta.c pbkdf2.c\n salsa20-128-set-key.c salsa20-256-set-key.c\n salsa20-core-internal.c\n salsa20-set-key.c salsa20-set-nonce.c\nCopyright: 2012-2014 Niels M\u00f6ller\n 2004, 2012 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arctwo.h\n salsa20-internal.h salsa20.h\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/chacha-2core.asm arm64/chacha-4core.asm\n arm64/chacha-core-internal.asm s390x/vf/chacha-2core.asm\n s390x/vf/chacha-4core.asm s390x/vf/chacha-core-internal.asm\nCopyright: 2020 Niels M\u00f6ller and Torbj\u00f6rn Granlund\n 2022 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/aes128-decrypt.asm arm64/crypto/aes128-encrypt.asm\n arm64/crypto/aes192-decrypt.asm arm64/crypto/aes192-encrypt.asm\n arm64/crypto/aes256-decrypt.asm arm64/crypto/aes256-encrypt.asm\n arm64/crypto/sha1-compress.asm arm64/crypto/sha256-compress.asm\n arm64/fat/aes128-decrypt-2.asm arm64/fat/aes128-encrypt-2.asm\n arm64/fat/aes192-decrypt-2.asm arm64/fat/aes192-encrypt-2.asm\n arm64/fat/aes256-decrypt-2.asm arm64/fat/aes256-encrypt-2.asm\n arm64/fat/ghash-set-key-2.asm arm64/fat/ghash-update-2.asm\n arm64/fat/sha1-compress-2.asm arm64/fat/sha256-compress-2.asm\n fat-arm64.c fat-s390x.c powerpc64/fat/ghash-set-key-2.asm\n powerpc64/fat/ghash-update-2.asm s390x/fat/aes128-decrypt-2.asm\n s390x/fat/aes128-encrypt-2.asm s390x/fat/aes128-set-decrypt-key-2.asm\n s390x/fat/aes128-set-encrypt-key-2.asm\n s390x/fat/aes192-decrypt-2.asm s390x/fat/aes192-encrypt-2.asm\n s390x/fat/aes192-set-decrypt-key-2.asm\n s390x/fat/aes192-set-encrypt-key-2.asm s390x/fat/aes256-decrypt-2.asm\n s390x/fat/aes256-encrypt-2.asm s390x/fat/aes256-set-decrypt-key-2.asm\n s390x/fat/aes256-set-encrypt-key-2.asm s390x/fat/chacha-2core.asm\n s390x/fat/chacha-4core.asm s390x/fat/chacha-core-internal-2.asm\n s390x/fat/cpu-facility.asm s390x/fat/ghash-set-key-2.asm\n s390x/fat/ghash-update-2.asm s390x/fat/memxor3-2.asm\n s390x/fat/sha1-compress-2.asm s390x/fat/sha256-compress-2.asm\n s390x/fat/sha3-permute-2.asm s390x/fat/sha512-compress-2.asm\n s390x/memxor.asm s390x/msa/sha1-compress.asm\n s390x/msa_x1/aes128-decrypt.asm s390x/msa_x1/aes128-encrypt.asm\n s390x/msa_x1/aes128-set-decrypt-key.asm\n s390x/msa_x1/aes128-set-encrypt-key.asm s390x/msa_x1/sha256-compress.asm\n s390x/msa_x2/aes192-decrypt.asm s390x/msa_x2/aes192-encrypt.asm\n s390x/msa_x2/aes192-set-decrypt-key.asm\n s390x/msa_x2/aes192-set-encrypt-key.asm s390x/msa_x2/aes256-decrypt.asm\n s390x/msa_x2/aes256-encrypt.asm s390x/msa_x2/aes256-set-decrypt-key.asm\n s390x/msa_x2/aes256-set-encrypt-key.asm s390x/msa_x2/sha512-compress.asm\n s390x/msa_x4/ghash-set-key.asm s390x/msa_x4/ghash-update.asm\n s390x/vf/memxor3.asm\nCopyright: 2020, 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: arm64/crypto/ghash-set-key.asm arm64/crypto/ghash-update.asm\n powerpc64/p8/ghash-set-key.asm powerpc64/p8/ghash-update.asm\nCopyright: 2020 Niels M\u00f6ller and Mamone Tarsha\n 2021 Michael Weiser\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64.h base64-meta.c\nCopyright: 2002 Dan Egnor, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: base64url-decode.c base64url-encode.c\nCopyright: 2015 Amos Jeffries, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: block-internal.h\nCopyright: 2019 Dmitry Eremin-Solenikov\n 2018 Red Hat, Inc.\n 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\n 2010 Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: blowfish.h\nCopyright: 1998, 2001 Free Software Foundation, Inc.\n 1998, 2001 Ray Dassen\n 1998, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: camellia-table.c camellia-crypt-internal.c camellia.h camellia-internal.h\n camellia128-set-encrypt-key.c camellia256-set-encrypt-key.c camellia-absorb.c\nCopyright: 2006, 2007 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2010, 2013 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ccm.c ccm.h ccm-aes128.c\n ccm-aes192.c ccm-aes256.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cfb.c\n cfb.h\n ecc-gostdsa-sign.c\n ecc-gostdsa-verify.c\n gostdsa-sign.c\n gostdsa-verify.c\nCopyright: 2015, 2017 Dmitry Eremin-Solenikov\n 2001, 2011, 2013, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: chacha-core-internal.c chacha-crypt.c\n chacha-internal.h chacha.h chacha-set-nonce.c\nCopyright: 2012 Simon Josefsson\n 2013 Joachim Str\u00f6mbergson\n 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-aes128.c cmac-aes256.c\n cmac.h hkdf.c hkdf.h\n xts-aes128.c xts-aes256.c xts.c\nCopyright: 2017, 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3-meta.c\nCopyright: 2020 Dmitry Baryshkov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac-des3.c\n ecc-gost-gc256b.c ecc-gost-gc512a.c\n gost28147-internal.h gostdsa-vko.c\n hmac-gosthash94.c pbkdf2-hmac-gosthash94.c\nCopyright: 2016-2020 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: cmac.c cmac64.c\nCopyright: 2012 Stefan Metzmacher, Michael Adam, Jeremy Allison\n 2017 Red Hat Inc.\n 2019 Dmitry Eremin-Solenikov\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ctr16.c\n pkcs1-internal.h pkcs1-sec-decrypt.c\n version.h.in xts.h\nCopyright: 2015, 2017, 2018 Red Hat, Inc.\n 2001, 2002, 2005-2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: curve448-eh-to-x.c curve448.h\n curve448-mul-g.c curve448-mul.c\n ecc-curve448.c ed448-shake256-pubkey.c\n ed448-shake256-sign.c ed448-shake256-verify.c\n shake256.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: der2dsa.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: desCode.h descore.README desdata.c\nCopyright: \u00a9 2002 Dana L. How\nLicense: LGPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Library General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU Library\n General Public License, version 2, can be found in\n /usr/share/common-licenses/LGPL-2.\n\nFiles: des.c des.h\nCopyright: 1992 Dana L. How\n 1997, 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: dsa2sexp.c\nCopyright: 2002, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: eccdata.c eddsa-hash.c\nCopyright: 2017 Red Hat, Inc.\n 2017 Daiki Ueno\n 2013, 2014, 2017, 2019 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ecc-secp192r1.c\nCopyright: 2013, 2014, 2019, 2021 Niels M\u00f6ller\n 2019 Wim Lewis\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/base16dec.c examples/base16enc.c\n examples/base64dec.c examples/base64enc.c\nCopyright: 2006, 2012, Jeronimo Pellegrini, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: examples/nettle-openssl.c\nCopyright: 2015, 2017, 2018, Red Hat, Inc.\n 2001, 2002, 2005-2018, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gcm.c gcm.h ghash-set-key.c ghash-update.c\nCopyright: 2011 Katholieke Universiteit Leuven\n 2011, 2013, 2018, 2022 Niels M\u00f6ller\n 2018 Red Hat, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gmp-glue.c\n gmp-glue.h\nCopyright: 2013 Red Hat, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gost28147.c gosthash94.c\nCopyright: 2019 Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>\n 2009-2012 Aleksey Kravchenko <rhash.admin at gmail.com>\nLicense: Expat\n\nFiles: gostdsa.h\nCopyright: 2015, Dmity Eremin-Solenikov\n 2013, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94-meta.c\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gosthash94.h\nCopyright: 2012, Nikos Mavrogiannopoulos, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-md5-meta.c hmac-ripemd160-meta.c\n hmac-sha1-meta.c hmac-sha224-meta.c\n hmac-sha256-meta.c hmac-sha384-meta.c\n hmac-sha512-meta.c nettle-meta-macs.c\n pss-mgf1.c pss-mgf1.h pss.c pss.h\n rsa-pss-sha256-sign-tr.c rsa-pss-sha256-verify.c\n rsa-pss-sha512-sign-tr.c rsa-pss-sha512-verify.c\nCopyright: 2017, 2020 Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: hmac-sm3.c hmac-sm3-meta.c\nCopyright: 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md2.c\nCopyright: ? Andrew Kuchling\n 2003 Andreas Sigfridsson\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md4.c\nCopyright: 2003 Marcus Comstedt\n 2003 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: md5.c md5-compress.c\nCopyright: Colin Plumb, Andrew Kuchling\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: memxor.c\nCopyright: 1991,1993, 1995 Free Software Foundation, Inc.\n 2010 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nettle-meta-armors.c\n nettle-meta-ciphers.c\n nettle-meta-hashes.c\nCopyright: 2011 Daniel Kahn Gillmor\nLicense: LGPL-3+ or GPL-2+\n\nFiles: nist-keywrap.c nist-keywrap.h\nCopyright: 2021 Nicolas Mora\n 2021 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha1.c\n pbkdf2-hmac-sha256.c\n pbkdf2.h\n salsa20-crypt.c\nCopyright: 2012, Simon Josefsson\nLicense: LGPL-3+ or GPL-2+\n\nFiles: pbkdf2-hmac-sha384.c pbkdf2-hmac-sha512.c\nCopyright: 2012 Simon Josefsson\n 2021 Nicolas Mora\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-aes.c\nCopyright: 2014 Niels M\u00f6ller\n 2013 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.c\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013 Niels M\u00f6ller\n 2012, 2013 Andrew M. (floodyberry)\nLicense: LGPL-3+ or GPL-2+\n\nFiles: poly1305-internal.h\n poly1305.h\nCopyright: 2013, Nikos Mavrogiannopoulos\n 2013, 2014, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-curve25519-modp.asm powerpc64/ecc-curve448-modp.asm\n powerpc64/ecc-secp521r1-modp.asm\nCopyright: 2021 Martin Schwenke & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp192r1-modp.asm powerpc64/ecc-secp224r1-modp.asm\nCopyright: 2021 Amitay Isaacs, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp256r1-redc.asm\nCopyright: 2021 Amitay Isaacs & Martin Schwenke, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: powerpc64/ecc-secp384r1-modp.asm\nCopyright: 2021 Martin Schwenke, Amitay Isaacs & Alastair D\u00b4Silva, IBM Corporation\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160.c ripemd160-compress.c\nCopyright: 1998, 2001, 2002, 2003 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: ripemd160-meta.c ripemd160.h ripemd160-internal.h\nCopyright: 2011 Andres Mejia\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-blind.c rsa-decrypt-tr.c\nCopyright: 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-pkcs1-sign-tr.c salsa20r12-crypt.c\n siv-cmac-aes128.c siv-cmac-aes256.c\n siv-cmac.c siv-cmac.h\nCopyright: 2012, 2013, 2017, 2018, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-compute-root.c\nCopyright: 2018 Red Hat, Inc\n 2018 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sec-decrypt.c\nCopyright: 2018, Red Hat, Inc.\n 2001, 2012, Niels M\u00f6ller, Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: rsa-sign-tr.c\nCopyright: 2018, Red Hat Inc.\n 2012, Nikos Mavrogiannopoulos\n 2001, 2015, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: s390x/vf/sha3-permute.asm\nCopyright: 2012 Niels M\u00f6ller\n 2021 Mamone Tarsha\nLicense: LGPL-3+ or GPL-2+\n\nFiles: serpent-encrypt.c serpent-decrypt.c serpent-set-key.c serpent-internal.h\nCopyright: 1998 Ross Anderson, Eli Biham, Lars Knudsen\n 2003, 2004, 2005 Free Software Foundation, Inc.\n 2010, 2011 Simon Josefsson\n 2011, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha1-compress.c\nCopyright: 2001, 2004 Peter Gutmann, Andrew Kuchling, Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sha512.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: sm3.c sm3.h sm3-meta.c\nCopyright: 2017 Jia Zhang\n 2021 Tianjia Zhang\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/arctwo-test.c\nCopyright: 2004, 2012 Simon Josefsson\n 2001, 2002, 2004, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/ccm-test.c\nCopyright: 2014 Owen Kirby\n 2014 Exegin Technologies Limited\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/chacha-test.c\nCopyright: 2013, 2014 Joachim Str\u00f6mbergson\n 2001, 2010, 2012, 2014 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/curve448-dh-test.c\n testsuite/ed448-test.c\n testsuite/shake256-test.c\nCopyright: 2017, Red Hat, Inc.\n 2017, Daiki Ueno\nLicense: LGPL-3+ or GPL-2+\n\nFiles: testsuite/siv-test.c\nCopyright: 2012, 2013, 2017, 2018 Nikos Mavrogiannopoulos\nLicense: LGPL-3+ or GPL-2+\n\nFiles: texinfo.tex\nCopyright: 1985, 1986, 1988, 1990-2009, Free Software Foundation, Inc.\nLicense: GPL-3+\n This texinfo.tex file is free software: you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation, either version 3 of the\n License, or (at your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nFiles: twofish*\nCopyright: 1999 Ruud de Rooij <ruud at debian.org>\n 1999 J.H.M. Dassen (Ray) <jdassen at wi.LeidenUniv.nl>\n 2001 Niels M\u00f6ller\nLicense: LGPL-3+ or GPL-2+\n\nFiles: tools/pkcs1-conv.c\nCopyright: 2005, 2009, 2014 Niels M\u00f6ller\n 2009 Magnus Holmgren\nLicense: LGPL-3+ or GPL-2+\n\nFiles: getopt*\nCopyright: 1987-2001 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: config.guess config.sub\nCopyright: \u00a9 1992-2020 Free Software Foundation, Inc.\nLicense: GPL-3+ with Autoconf exception\n As a special exception to the GNU General Public License, if you\n distribute this file as part of a program that contains a\n configuration script generated by Autoconf, you may include it under\n the same distribution terms that you use for the rest of that program.\n\nFiles: debian/*\nCopyright: none\nLicense: public-domain\n I believe that most files in debian/ hardly contains any creative\n expression eligible for copyright.\n\nFiles: debian/sexp-conv.1\nCopyright: 2002 Timshel Knoll <timshel at debian.org>\n 2007 Magnus Holmgren\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June. 1991.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License, version 2, can be found in\n /usr/share/common-licenses/GPL-2.\nComment:\n This manpage was copied from the lsh-utils package. Timshel didn't\n explicitly select a license for his packaging work, but I think that\n it can be considered released under the same license as LSH itself.\n\nFiles: debian/pkcs1-conv.1 debian/nettle-lfib-stream.1\nCopyright: 2007 Magnus Holmgren\nLicense: GAP\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved.\n\nLicense: LGPL-3+\n The nettle library is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\n License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, see http://www.gnu.org/licenses/.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU Lesser General Public License can be found in\n /usr/share/common-licenses/LGPL.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n GNU Nettle is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n 02110-1301 USA.\n .\n On Debian GNU/Linux systems, the complete text of the newest version\n of the GNU General Public License can be found in\n /usr/share/common-licenses/GPL.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libnettle8 at 3.8.1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3942,6 +11316,18 @@
"content": "4b0eca370e8e65268a0a7917dd82a2d615ef5ae7cba1032db6b51f998cfb25d5"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libnewt0.52 at 0.52.23-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3958,6 +11344,23 @@
"content": "3a8223f9bfba99d97bf25296ac83de307ab036e1df63e5965f88809266851947"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC-BY-SA-4.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libnftables1 at 1.0.6-2+deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3974,6 +11377,18 @@
"content": "9e619e1470a1915264e906020f3bfc046fd8458043b1342686d997b5078213af"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libnftnl11 at 1.2.4-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3990,6 +11405,52 @@
"content": "251330faddbf013f060fcdb41f4b0c037c8a6e89ba7c09b04bfcc4e3f0807b22"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "permissive-like-automake-output",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: p11-kit\nSource: https://p11-glue.github.io/p11-glue/p11-kit.html\n\nFiles: *\nCopyright: 2011 Collabora Ltd.\n 2004, 2005, 2007, 2008, 2012, 2013 Stefan Walter\n 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Red Hat, Inc.\n 2012, 2013 Redhat Inc.\nLicense: BSD-3-Clause\n\nFiles: common/pkcs11.h\nCopyright: 2006, 2007 g10 Code GmbH\n 2006 Andreas Jellinghaus\n Copyright 2017 Red Hat, Inc.\nLicense: permissive-like-automake-output\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. */\n\nFiles: common/vsock.c common/vsock.h\nCopyright: 2020 Amazon.com, Inc. or its affiliates.\nLicense: BSD-3-Clause\n\n\nFiles: p11-kit/server.c\n common/unix-peer.h\nCopyright: 2014 Red Hat Inc.\nLicense: BSD-3-Clause\nComment: make_private_security_descriptor() and the helper functions were\n * copied from putty/windows/winsecur.c in the PuTTY source code as of\n * git commit 12bd5a6c722152aa27f24598785593e72b3284ea.\n *\n * PuTTY is copyright 1997-2017 Simon Tatham.\n *\n * Portions copyright Robert de Bath, Joris van Rantwijk, Delian\n * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\n * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus\n * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A.\n *\n * Permission is hereby granted, free of charge, to any person\n * obtaining a copy of this software and associated documentation files\n * (the \"Software\"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge,\n * publish, distribute, sublicense, and/or sell copies of the Software,\n * and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n\nFiles: trust/digest.c common/hash.c\nCopyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. (\"ISC\")\n 2000, 2001, 2003 Internet Software Consortium.\nLicense: ISC\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES WITH\n REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\n OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THIS SOFTWARE.\n\n\nFiles: trust/base64.c trust/base64.h\nCopyright: 1996, 1998 by Internet Software Consortium\n Portions Copyright (c) 1995 by International Business Machines, Inc.\nLicense: ISC+IBM\n Copyright (c) 1996, 1998 by Internet Software Consortium.\n .\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n .\n .\n Portions Copyright (c) 1995 by International Business Machines, Inc.\n .\n International Business Machines, Inc. (hereinafter called IBM) grants\n permission under its copyrights to use, copy, modify, and distribute this\n Software with or without fee, provided that the above copyright notice and\n all paragraphs of this notice appear in all copies, and that the name of IBM\n not be used in connection with the marketing of any product incorporating\n the Software or modifications thereof, without specific, written prior\n permission.\n .\n To the extent it has a right to do so, IBM grants an immunity from suit\n under its patents, if any, for the use, sale or manufacture of products to\n the extent that such products are used for performing Domain Name System\n dynamic updates in TCP/IP networks by means of the Software. No immunity is\n granted for any product per se or for any other function of any product.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", AND IBM DISCLAIMS ALL WARRANTIES,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,\n DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING\n OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN\n IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nFiles: common/compat.c\nCopyright: Copyright (c) 2011 Collabora Ltd.\n Portions of this file are covered by the following copyright:\n Copyright (c) 2001 Mike Barcroft <mike at FreeBSD.org>\n Copyright (c) 1990, 1993\n Copyright (c) 1987, 1993\n The Regents of the University of California.\nComment: This code is derived from software contributed to Berkeley by\n Chris Torek.\nLicense: BSD-3-Clause\n\n\nFiles: common/unix-peer.c\nCopyright: 2013 Nikos Mavrogiannopoulos\nLicense: BSD-3-Clause\n\nFiles: common/frob-getprogname.c\nCopyright: 2020 Red Hat Inc.\nLicense: BSD-3-Clause\n\nFiles: p11-kit/mock-module-ep8.c\nCopyright: 2012 Stefan Walter\n 2020 Red Hat, Inc.\nLicense: BSD-3-Clause\n\nFiles: fuzz/main.c\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: LGPL-2.1+\n\nFiles: fuzz/rpc_fuzzer.c\nCopyright: 2016 Google Inc\nLicense: Apache-2.0\n\nFiles: debian/*\nCopyright: 2011 Chris Coulson <chris.coulson at canonical.com>\n 2011-2022 Andreas Metzler <ametzler at debian.org>\nLicense: BSD-3-Clause\n\n\nFiles: po/de.po\nCopyright: 2011 Chris Leick\nComment: This file is distributed under the same license as the\n debian files of the p11-kit package.\nLicense: BSD-3-Clause\n\nFiles: po/fi.po\nCopyright: 2012 Rosetta Contributors and Canonical Ltd 2012\n Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012\n Timo Jyrinki <timo.jyrinki at iki.fi>, 2012\nLicense: same-as-rest-of-p11kit\n This file is distributed under the same license as the p11-kit\n package.\n\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n On Debian systems a copy of the LGPL 2.1 license can be found in\n /usr/share/common-licenses/LGPL-2.1\n\nLicense: Apache-2.0\n On Debian systems a copy of the Apache 2.0 license can be found in\n /usr/share/common-licenses/Apache-2.0\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "ISC+IBM",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: p11-kit\nSource: https://p11-glue.github.io/p11-glue/p11-kit.html\n\nFiles: *\nCopyright: 2011 Collabora Ltd.\n 2004, 2005, 2007, 2008, 2012, 2013 Stefan Walter\n 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Red Hat, Inc.\n 2012, 2013 Redhat Inc.\nLicense: BSD-3-Clause\n\nFiles: common/pkcs11.h\nCopyright: 2006, 2007 g10 Code GmbH\n 2006 Andreas Jellinghaus\n Copyright 2017 Red Hat, Inc.\nLicense: permissive-like-automake-output\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. */\n\nFiles: common/vsock.c common/vsock.h\nCopyright: 2020 Amazon.com, Inc. or its affiliates.\nLicense: BSD-3-Clause\n\n\nFiles: p11-kit/server.c\n common/unix-peer.h\nCopyright: 2014 Red Hat Inc.\nLicense: BSD-3-Clause\nComment: make_private_security_descriptor() and the helper functions were\n * copied from putty/windows/winsecur.c in the PuTTY source code as of\n * git commit 12bd5a6c722152aa27f24598785593e72b3284ea.\n *\n * PuTTY is copyright 1997-2017 Simon Tatham.\n *\n * Portions copyright Robert de Bath, Joris van Rantwijk, Delian\n * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\n * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus\n * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A.\n *\n * Permission is hereby granted, free of charge, to any person\n * obtaining a copy of this software and associated documentation files\n * (the \"Software\"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge,\n * publish, distribute, sublicense, and/or sell copies of the Software,\n * and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n\nFiles: trust/digest.c common/hash.c\nCopyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. (\"ISC\")\n 2000, 2001, 2003 Internet Software Consortium.\nLicense: ISC\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES WITH\n REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\n OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THIS SOFTWARE.\n\n\nFiles: trust/base64.c trust/base64.h\nCopyright: 1996, 1998 by Internet Software Consortium\n Portions Copyright (c) 1995 by International Business Machines, Inc.\nLicense: ISC+IBM\n Copyright (c) 1996, 1998 by Internet Software Consortium.\n .\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n .\n .\n Portions Copyright (c) 1995 by International Business Machines, Inc.\n .\n International Business Machines, Inc. (hereinafter called IBM) grants\n permission under its copyrights to use, copy, modify, and distribute this\n Software with or without fee, provided that the above copyright notice and\n all paragraphs of this notice appear in all copies, and that the name of IBM\n not be used in connection with the marketing of any product incorporating\n the Software or modifications thereof, without specific, written prior\n permission.\n .\n To the extent it has a right to do so, IBM grants an immunity from suit\n under its patents, if any, for the use, sale or manufacture of products to\n the extent that such products are used for performing Domain Name System\n dynamic updates in TCP/IP networks by means of the Software. No immunity is\n granted for any product per se or for any other function of any product.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", AND IBM DISCLAIMS ALL WARRANTIES,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,\n DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING\n OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN\n IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nFiles: common/compat.c\nCopyright: Copyright (c) 2011 Collabora Ltd.\n Portions of this file are covered by the following copyright:\n Copyright (c) 2001 Mike Barcroft <mike at FreeBSD.org>\n Copyright (c) 1990, 1993\n Copyright (c) 1987, 1993\n The Regents of the University of California.\nComment: This code is derived from software contributed to Berkeley by\n Chris Torek.\nLicense: BSD-3-Clause\n\n\nFiles: common/unix-peer.c\nCopyright: 2013 Nikos Mavrogiannopoulos\nLicense: BSD-3-Clause\n\nFiles: common/frob-getprogname.c\nCopyright: 2020 Red Hat Inc.\nLicense: BSD-3-Clause\n\nFiles: p11-kit/mock-module-ep8.c\nCopyright: 2012 Stefan Walter\n 2020 Red Hat, Inc.\nLicense: BSD-3-Clause\n\nFiles: fuzz/main.c\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: LGPL-2.1+\n\nFiles: fuzz/rpc_fuzzer.c\nCopyright: 2016 Google Inc\nLicense: Apache-2.0\n\nFiles: debian/*\nCopyright: 2011 Chris Coulson <chris.coulson at canonical.com>\n 2011-2022 Andreas Metzler <ametzler at debian.org>\nLicense: BSD-3-Clause\n\n\nFiles: po/de.po\nCopyright: 2011 Chris Leick\nComment: This file is distributed under the same license as the\n debian files of the p11-kit package.\nLicense: BSD-3-Clause\n\nFiles: po/fi.po\nCopyright: 2012 Rosetta Contributors and Canonical Ltd 2012\n Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012\n Timo Jyrinki <timo.jyrinki at iki.fi>, 2012\nLicense: same-as-rest-of-p11kit\n This file is distributed under the same license as the p11-kit\n package.\n\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n On Debian systems a copy of the LGPL 2.1 license can be found in\n /usr/share/common-licenses/LGPL-2.1\n\nLicense: Apache-2.0\n On Debian systems a copy of the Apache 2.0 license can be found in\n /usr/share/common-licenses/Apache-2.0\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ },
+ {
+ "license": {
+ "name": "same-as-rest-of-p11kit",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: p11-kit\nSource: https://p11-glue.github.io/p11-glue/p11-kit.html\n\nFiles: *\nCopyright: 2011 Collabora Ltd.\n 2004, 2005, 2007, 2008, 2012, 2013 Stefan Walter\n 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Red Hat, Inc.\n 2012, 2013 Redhat Inc.\nLicense: BSD-3-Clause\n\nFiles: common/pkcs11.h\nCopyright: 2006, 2007 g10 Code GmbH\n 2006 Andreas Jellinghaus\n Copyright 2017 Red Hat, Inc.\nLicense: permissive-like-automake-output\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even\n the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. */\n\nFiles: common/vsock.c common/vsock.h\nCopyright: 2020 Amazon.com, Inc. or its affiliates.\nLicense: BSD-3-Clause\n\n\nFiles: p11-kit/server.c\n common/unix-peer.h\nCopyright: 2014 Red Hat Inc.\nLicense: BSD-3-Clause\nComment: make_private_security_descriptor() and the helper functions were\n * copied from putty/windows/winsecur.c in the PuTTY source code as of\n * git commit 12bd5a6c722152aa27f24598785593e72b3284ea.\n *\n * PuTTY is copyright 1997-2017 Simon Tatham.\n *\n * Portions copyright Robert de Bath, Joris van Rantwijk, Delian\n * Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,\n * Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus\n * Kuhn, Colin Watson, Christopher Staite, and CORE SDI S.A.\n *\n * Permission is hereby granted, free of charge, to any person\n * obtaining a copy of this software and associated documentation files\n * (the \"Software\"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge,\n * publish, distribute, sublicense, and/or sell copies of the Software,\n * and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n\nFiles: trust/digest.c common/hash.c\nCopyright: 2004, 2005, 2007, 2011 Internet Systems Consortium, Inc. (\"ISC\")\n 2000, 2001, 2003 Internet Software Consortium.\nLicense: ISC\n Permission to use, copy, modify, and/or distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND ISC DISCLAIMS ALL WARRANTIES WITH\n REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\n OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THIS SOFTWARE.\n\n\nFiles: trust/base64.c trust/base64.h\nCopyright: 1996, 1998 by Internet Software Consortium\n Portions Copyright (c) 1995 by International Business Machines, Inc.\nLicense: ISC+IBM\n Copyright (c) 1996, 1998 by Internet Software Consortium.\n .\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n .\n .\n Portions Copyright (c) 1995 by International Business Machines, Inc.\n .\n International Business Machines, Inc. (hereinafter called IBM) grants\n permission under its copyrights to use, copy, modify, and distribute this\n Software with or without fee, provided that the above copyright notice and\n all paragraphs of this notice appear in all copies, and that the name of IBM\n not be used in connection with the marketing of any product incorporating\n the Software or modifications thereof, without specific, written prior\n permission.\n .\n To the extent it has a right to do so, IBM grants an immunity from suit\n under its patents, if any, for the use, sale or manufacture of products to\n the extent that such products are used for performing Domain Name System\n dynamic updates in TCP/IP networks by means of the Software. No immunity is\n granted for any product per se or for any other function of any product.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", AND IBM DISCLAIMS ALL WARRANTIES,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,\n DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING\n OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN\n IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nFiles: common/compat.c\nCopyright: Copyright (c) 2011 Collabora Ltd.\n Portions of this file are covered by the following copyright:\n Copyright (c) 2001 Mike Barcroft <mike at FreeBSD.org>\n Copyright (c) 1990, 1993\n Copyright (c) 1987, 1993\n The Regents of the University of California.\nComment: This code is derived from software contributed to Berkeley by\n Chris Torek.\nLicense: BSD-3-Clause\n\n\nFiles: common/unix-peer.c\nCopyright: 2013 Nikos Mavrogiannopoulos\nLicense: BSD-3-Clause\n\nFiles: common/frob-getprogname.c\nCopyright: 2020 Red Hat Inc.\nLicense: BSD-3-Clause\n\nFiles: p11-kit/mock-module-ep8.c\nCopyright: 2012 Stefan Walter\n 2020 Red Hat, Inc.\nLicense: BSD-3-Clause\n\nFiles: fuzz/main.c\nCopyright: 2017 Nikos Mavrogiannopoulos\nLicense: LGPL-2.1+\n\nFiles: fuzz/rpc_fuzzer.c\nCopyright: 2016 Google Inc\nLicense: Apache-2.0\n\nFiles: debian/*\nCopyright: 2011 Chris Coulson <chris.coulson at canonical.com>\n 2011-2022 Andreas Metzler <ametzler at debian.org>\nLicense: BSD-3-Clause\n\n\nFiles: po/de.po\nCopyright: 2011 Chris Leick\nComment: This file is distributed under the same license as the\n debian files of the p11-kit package.\nLicense: BSD-3-Clause\n\nFiles: po/fi.po\nCopyright: 2012 Rosetta Contributors and Canonical Ltd 2012\n Eerik Uusi-Illikainen https://launchpad.net/~ekiuusi-4, 2012\n Timo Jyrinki <timo.jyrinki at iki.fi>, 2012\nLicense: same-as-rest-of-p11kit\n This file is distributed under the same license as the p11-kit\n package.\n\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n On Debian systems a copy of the LGPL 2.1 license can be found in\n /usr/share/common-licenses/LGPL-2.1\n\nLicense: Apache-2.0\n On Debian systems a copy of the Apache 2.0 license can be found in\n /usr/share/common-licenses/Apache-2.0\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libp11-kit0 at 0.24.1-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -3998,12 +11459,65 @@
"version": "1.5.2-6+deb12u1",
"hashes": [
{
- "alg": "MD5",
- "content": "a3a85d0b342f633a142b4010f6341df0"
+ "alg": "MD5",
+ "content": "a3a85d0b342f633a142b4010f6341df0"
+ },
+ {
+ "alg": "SHA-256",
+ "content": "851d270e36707787ab1cd269dbd9597864feaf3f8453ecd3c426caaa56142222"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-tcp_wrappers",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
},
{
- "alg": "SHA-256",
- "content": "851d270e36707787ab1cd269dbd9597864feaf3f8453ecd3c426caaa56142222"
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
}
],
"purl": "pkg:deb/debian/libpam-modules at 1.5.2-6+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
@@ -4022,6 +11536,59 @@
"content": "fc6a692d2f399b83ef5a7f310883286a5e4326095812d8bb934925125002981c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-tcp_wrappers",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpam-modules-bin at 1.5.2-6+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4038,6 +11605,59 @@
"content": "da03311a716bdcb73d1a93d322901ac46dce8eac67b5ccc95a6d8b776bfb4021"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-tcp_wrappers",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpam-runtime at 1.5.2-6+deb12u1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4054,6 +11674,59 @@
"content": "e360be5f17f9c09c8f17bae809f6c6f091c5bb6ab1a44fc33e4fb86c5e5559df"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-tcp_wrappers",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Linux-PAM\nComment: This package was debianized by J.H.M. Dassen (Ray) jdassen at debian.org.\nSource: https://github.com/linux-pam/linux-pam/releases\n\nFiles: *\nCopyright:\n Copyright (C) 1994, 1995, 1996 Olaf Kirch, <okir at monad.swb.de>\n Copyright (C) 1995 Wietse Venema\n Copyright (C) 1995, 2001-2008 Red Hat, Inc.\n Copyright (C) 1996-1999, 2000-2003, 2005 Andrew G. Morgan <morgan at kernel.org>\n Copyright (C) 1996, 1997, 1999 Cristian Gafton <gafton at redhat.com>\n Copyright (C) 1996, 1999 Theodore Ts'o\n Copyright (C) 1996 Alexander O. Yuriev\n Copyright (C) 1996 Elliot Lee\n Copyright (C) 1997 Philip W. Dalrymple <pwd at mdtsoft.com>\n Copyright (C) 1999 Jan R\u0119korajski\n Copyright (C) 1999 Ben Collins <bcollins at debian.org>\n Copyright (C) 2000-2001, 2003, 2005, 2007 Steve Langasek\n Copyright (C) 2003, 2005 IBM Corporation\n Copyright (C) 2003, 2006 SuSE Linux AG.\n Copyright (C) 2003 Nalin Dahyabhai <nalin at redhat.com>\n Copyright (C) 2005-2008 Thorsten Kukuk <kukuk at thkukuk.de>\n Copyright (C) 2005 Darren Tucker\nLicense: BSD-3-clause or GPL\n Unless otherwise *explicitly* stated the following text describes the\n licensed conditions under which the contents of this Linux-PAM release\n may be distributed:\n .\n Redistribution and use in source and binary forms of Linux-PAM, with\n or without modification, are permitted provided that the following\n conditions are met:\n 1. Redistributions of source code must retain any existing copyright\n notice, and this entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce all prior and current\n copyright notices, this list of conditions, and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n 3. The name of any author may not be used to endorse or promote\n products derived from this software without their specific prior\n written permission.\n .\n ALTERNATIVELY, this product may be distributed under the terms of the\n GNU General Public License, in which case the provisions of the GNU\n GPL are required INSTEAD OF the above restrictions. (This clause is\n necessary due to a potential conflict between the GNU GPL and the\n restrictions contained in a BSD-style copyright.)\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS\n OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\n TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL'.\n\nFiles: tests/tst-pam_mkargv.c\nCopyright: (C) Thorsten Kukuk <kukuk at suse.de> 2009\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation in version 2 of the License.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: tests/tst-dlopen.c\n modules/pam_keyinit/pam_keyinit.c\n modules/pam_loginuid/pam_loginuid.c\n modules/pam_unix/yppasswd.h\n modules/pam_unix/yppasswd_xdr.c\n debian/local/pam_getenv\nCopyright:\n Copyright 2005 Red Hat Inc., Durham, North Carolina.\n Copyright (C) Nalin Dahyabhai <nalin at redhat.com> 2003\n Copyright 2004 by Sam Hartman\n Copyright 1994, 1995, 1996 Olaf Kirch, <okir at lst.de>\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Suite 500\n Boston, MA 02110-1335 USA\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nFiles: debian/local/pam-auth-update*\nCopyright: (C) 2008 Canonical Ltd.\nLicense: GPL-3\n This program is free software; you can redistribute it and/or modify\n it under the terms of version 3 of the GNU General Public License as\n published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,\n USA.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: doc/specs/parse_y.*\n conf/pam_conv1/pam_conv_y.*\nCopyright: (C) 1984-2021 Free Software Foundation, Inc.\nLicense: GPL-3+ with Bison exception\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: modules/pam_access/pam_access.c\nCopyright: 1995 by Wietse Venema. All rights reserved. Individual files\n may be covered by other copyrights (as noted in the file itself.)\nLicense: BSD-tcp_wrappers\n This material was originally written and compiled by Wietse Venema at\n Eindhoven University of Technology, The Netherlands, in 1990, 1991,\n 1992, 1993, 1994 and 1995.\n .\n Redistribution and use in source and binary forms are permitted\n provided that this entire copyright notice is duplicated in all such\n copies.\n .\n This software is provided \"as is\" and without any expressed or implied\n warranties, including, without limitation, the implied warranties of\n merchantability and fitness for any particular purpose.\n\nFiles: modules/pam_mkhomedir/mkhomedir_helper.c\n modules/pam_mkhomedir/pam_mkhomedir.c\n modules/pam_issue/pam_issue.c\nCopyright:\n Copyright (c) Red Hat, Inc. 2009\n Copyright 1999 by Ben Collins <bcollins at debian.org>\nLicense: LGPL-2+\n Released under the GNU LGPL version 2 or later\nComment:\n On Debian GNU/Linux systems, the complete text of the GNU Lesser General\n Public License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.\n\nFiles: modules/pam_unix/md5.c\n modules/pam_namespace/md5.c\nCopyright: 1993 Colin Plumb\nLicense: public-domain\n This code was written by Colin Plumb in 1993, no copyright is claimed.\n This code is in the public domain; do with it what you wish.\n\nFiles: modules/pam_unix/lckpwdf.-c\nCopyright: Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>\nLicense: public-domain\n Written by Marek Michalkiewicz <marekm at i17linuxb.ists.pwr.wroc.pl>,\n public domain.\n\nFiles: modules/pam_unix/md5_crypt.c\nCopyright: Poul-Henning Kamp <phk at login.dknet.dk>\nLicense: Beerware\n \"THE BEER-WARE LICENSE\" (Revision 42):\n <phk at login.dknet.dk> wrote this file. As long as you retain this notice you\n can do whatever you want with this stuff. If we meet some day, and you think\n this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "Beerware"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpam0g at 1.5.2-6+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4070,6 +11743,36 @@
"content": "030db54f4d76cdfe2bf0e8eb5f9efea0233ab3c7aa942d672c7b63b52dbaf935"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-clause-Cambridge WITH BINARY LIBRARY-LIKE PACKAGES exception",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment: This package was debianized by Matthew Vernon <matthew at debian.org>\nSource: https://github.com/PCRE2Project/pcre2/releases\n\nFiles: *\nCopyright: 1997-2022 University of Cambridge.\nLicense: BSD-3-clause-Cambridge with BINARY LIBRARY-LIKE PACKAGES exception\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of the University of Cambridge nor the names of any\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n .\n .\n EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES\n ------------------------------------------\n .\n The second condition in the BSD licence (covering binary redistributions) does\n not apply all the way down a chain of software. If binary package A includes\n PCRE2, it must respect the condition, but if package B is software that\n includes package A, the condition is not imposed on package B unless it uses\n PCRE2 independently.\n\nFiles: cmake/Find*\nCopyright: KDE Community\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: install-sh\nCopyright: (C) 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: src/sljit/*\nCopyright: Zoltan Herczeg (hzmester at freemail.hu). All rights reserved.\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without modification, are\n permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this list of\n conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice, this list\n of conditions and the following disclaimer in the documentation and/or other materials\n provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\n SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\n TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\n ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nFiles: testdata/*\nCopyright: None (public-domain)\nLicense: public-domain\n The data in the testdata directory is not copyrighted and is in the public domain.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpcre2-8-0 at 10.42-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4086,6 +11789,21 @@
"content": "6f94b488255acd996254f775c77ff3956557c61f860a3c9caeaf65457554194f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "expat",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: popt\nUpstream-Contact: rpm-maint at lists.rpm.org\nSource: https://ftp.osuosl.org/pub/rpm/popt/releases/popt-1.x/\nFiles-Excluded: popt.pdf\nComment:\n popt was originally written by Erik Troan when he was with RedHat. It's\n now maintained as part of Fedora.\n\nFiles: *\nCopyright: Copyright (c) 1998 Red Hat Software\n (C) 1998-2002 Red Hat, Inc.\nLicense: expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nFiles: debian/*\nCopyright: GNU copyright 1997 to 1999 by Joey Hess\n 2012, Paul Martin <pm at debian.org>\n 2018, Michael Jeanson <mjeanson at debian.org>\n 2022 H\u00e5vard F. Aasen <havard.f.aasen at pfft.no>\nLicense: GPL-2+\n This program is free software; you can redistribute it\n and/or modify it under the terms of the GNU General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later\n version.\n .\n This program is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied\n warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. See the GNU General Public License for more\n details.\n .\n You should have received a copy of the GNU General Public\n License along with this package; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n Boston, MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libpopt0 at 1.19+dfsg-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4102,6 +11820,26 @@
"content": "e82ba5d01929eafb8b9954606a3c38b0332a987c2b3432388b4ee7365e54deae"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: procps-ng\nSource: https://gitlab.com/procps-ng/procps\n\nFiles: *\nCopyright: 1998-2004 Albert Cahalan\n 1991 Tony Rems <rembo at unisoft.com>\n 1993 Larry Greenfield\n 1996 Charles Blake\n 1999 Mike Coleman <mkc at acm.org>\n 2004 Nicholas Miell\n 2003 Chris Rivera\n 2003 Robert Love <rml at tech9.net>\n 2008 Morty Abzug\n 2009 Jarrod Lowe <procps at rrod.net>\n 1992 Branko Lankester\n ???? David Engel <david at ods.com>\n 1992-1998 Michael K. Johnson <johnsonm at sunsite.unc.edu>\n 2012-2022 Craig Small <csmall at enc.com.au>\n 1995 Martin Schulze <joey at infodrom.north.de>\nLicense: LGPL-2.1+\n\nFiles: src/top/*\nCopyright: 2002-2022 James C. Warner\nLicense: LGPL-2.0+\n\nFiles: src/pgrep.*\nCopyright: 2000 Kjetil Torgrim Homme <kjetilho at ifi.uio.no>\n 2002,2006 Albert Cahalan\n 2012 Roberto Polli <rpolli at babel.it>\nLicense: GPL-2.0+\n\nFiles: src/pidof.*\nCopyright: 2013 Jaromir Capik <jcapik at redhat.com>\nLicense: GPL-2.0+\n\nFiles: src/free.*\nCopyright: 2011 Sami Kerola <kerolasa at iki.fi>\n 2002-2003 Robert Love <rml at tech9.net>\n 1992 Brian Edmonds\n 1992 Rafal Maszkowski\n 2004 Albert Cahalan\nLicense: GPL-2.0+\n\nFiles: src/sysctl.*\nCopyright: 1999 George Staikos\nLicense: GPL-2.0+\n\nFiles: debian/*\nCopyright: 1997-2022 Craig Small <csmall at debian.org>\n 1996-1997 Helmut Geyer <Helmut.Geyer at iwr.uni-heidelberg.de>\nLicense: GPL-2.0+\n\nLicense: GPL-2.0+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2.0+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-2\".\n\nLicense: LGPL-2.1+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-2.1\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libproc2-0 at 2:4.0.2-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4118,6 +11856,39 @@
"content": "e02ebbd3701cf468dbf98d6d917fbe0325e881f07fe8b316150c8d2a64486e66"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU\n Readline library.\n .\n This package was put together by Matthias Klose <doko at debian.org>,\n derived from the bash package by Guy Maor <maor at debian.org>.\nUpstream-Name: Readline\nUpstream-Contact: \n Chet Ramey <chet.ramey at case.edu>\n Jeff Solomon <jsolomon at stanford.edu> (examples/excallback.c)\n Harold Levy <Harold.Levy at synopsys.com> (examples/rl-fgets.c)\nSource: http://ftp.gnu.org/gnu/readline/\n\nFiles: *\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n Readline is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Readline. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: examples/readlinebuf.h\n examples/rl-fgets.c\n examples/rlfe/*\n examples/rlwrap-*.tar.gz\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\n Copyright (c) 2001 by Dimitris Vyzovitis [vyzo at media.mit.edu]\n Copyright (C) 1999 Jeff Solomon (examples/excallback.c)\n Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c)\n Copyright (c) 1993-2002 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n Copyright (c) 1993-2002 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n Copyright (C) 1987 Oliver Laumann (examples/rlfe)\n Copyright (C) 2004, 1999 Per Bothner\n Copyright (C) 2000-2007 Hans Lub\n Copyright (C) 1999-2001 Geoff Wing\n Copyright (C) Damian Ivereigh 2000\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program (see the file COPYING); if not, write to the\n Free Software Foundation, Inc.,\n 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n The rlwrap example is also available in its own Debian package.\n The code copyrighted by Damian Ivereigh is licensed under LGPL-2.1+.\n\nFiles: doc/*.texi doc/*.info doc/*.html doc/*.[03] doc/*.dvi doc/*.pdf doc/*.ps\nCopyright:\n Copyright (C) 1988-2015 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL'.\n\nFiles: support/wcwidth.c\nCopyright: Markus Kuhn\nLicense: ISC-no-attribution\n Permission to use, copy, modify, and distribute this software\n for any purpose and without fee is hereby granted. The author\n disclaims all warranties with regard to this software.\n\nFiles: debian/*\nCopyright:\n Copyright (C) 1999-2009 Matthias Klose <doko at debian.org>\nLicense: GPL-3\n The Debian packaging is licensed under the GPL version 3, \n see `/usr/share/common-licenses/GPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "ISC-no-attribution",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU\n Readline library.\n .\n This package was put together by Matthias Klose <doko at debian.org>,\n derived from the bash package by Guy Maor <maor at debian.org>.\nUpstream-Name: Readline\nUpstream-Contact: \n Chet Ramey <chet.ramey at case.edu>\n Jeff Solomon <jsolomon at stanford.edu> (examples/excallback.c)\n Harold Levy <Harold.Levy at synopsys.com> (examples/rl-fgets.c)\nSource: http://ftp.gnu.org/gnu/readline/\n\nFiles: *\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n Readline is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Readline. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: examples/readlinebuf.h\n examples/rl-fgets.c\n examples/rlfe/*\n examples/rlwrap-*.tar.gz\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\n Copyright (c) 2001 by Dimitris Vyzovitis [vyzo at media.mit.edu]\n Copyright (C) 1999 Jeff Solomon (examples/excallback.c)\n Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c)\n Copyright (c) 1993-2002 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n Copyright (c) 1993-2002 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n Copyright (C) 1987 Oliver Laumann (examples/rlfe)\n Copyright (C) 2004, 1999 Per Bothner\n Copyright (C) 2000-2007 Hans Lub\n Copyright (C) 1999-2001 Geoff Wing\n Copyright (C) Damian Ivereigh 2000\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program (see the file COPYING); if not, write to the\n Free Software Foundation, Inc.,\n 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n The rlwrap example is also available in its own Debian package.\n The code copyrighted by Damian Ivereigh is licensed under LGPL-2.1+.\n\nFiles: doc/*.texi doc/*.info doc/*.html doc/*.[03] doc/*.dvi doc/*.pdf doc/*.ps\nCopyright:\n Copyright (C) 1988-2015 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL'.\n\nFiles: support/wcwidth.c\nCopyright: Markus Kuhn\nLicense: ISC-no-attribution\n Permission to use, copy, modify, and distribute this software\n for any purpose and without fee is hereby granted. The author\n disclaims all warranties with regard to this software.\n\nFiles: debian/*\nCopyright:\n Copyright (C) 1999-2009 Matthias Klose <doko at debian.org>\nLicense: GPL-3\n The Debian packaging is licensed under the GPL version 3, \n see `/usr/share/common-licenses/GPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libreadline8 at 8.2-1.3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4134,6 +11905,13 @@
"content": "108fe67957ca7cf9ba51d801118a1b37d404bea7b6e365025cd00779e9eca38d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libseccomp2 at 2.5.4-1+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4150,6 +11928,13 @@
"content": "2b07f5287b9105f40158b56e4d70cc1652dac56a408f3507b4ab3d061eed425f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libselinux1 at 3.4-1+b6?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4166,6 +11951,13 @@
"content": "835f806c21ae25e39053bd3057051640341b0cf08e1db9746fd82e370d82fa30"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsemanage-common at 3.4-1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4182,6 +11974,13 @@
"content": "fd36d0972866adde5a52269a309fcecd76a8e45e557dd0ecd33aa221cabc2a8c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsemanage2 at 3.4-1+b5?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4198,6 +11997,28 @@
"content": "b998946bb9818a97b387a962826caae33bc7fdcb6d706b2782c0470510be6b48"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsepol2 at 3.4-2.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4214,6 +12035,13 @@
"content": "5b3cecc829ef229125b340ccd2ca45ced75d24e9aa191912105016b1af94413f"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libslang2 at 2.3.3-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4230,6 +12058,71 @@
"content": "81c54dabc8ba03116f92c5412c9e0a7bafbde9533fc08e5dc4cba19b3f3a05d8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsmartcols1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4246,6 +12139,59 @@
"content": "75bbf628518966bea04498df28391b5c070ccae110332302c52affcce8cb7b68"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libss2 at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4262,6 +12208,21 @@
"content": "8e88b98b3fc634721d0899f498d4cf2e62405faaab6582123c7923b1ec8129e1"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: OpenSSL\nSource: https://www.openssl.org\n\nFiles: *\nCopyright: 1995-2020, The OpenSSL Project Authors\n\t 1995-1998, Eric A. Young, Tim J. Hudson\n\t 2004-2014 Akamai Technologies.\n\t 2008 Andy Polyakov <appro at openssl.org>\n\t 2017 BaishanCloud.\n\t 2015 CloudFlare Inc.\n\t 2014-2016 Cryptography Research Inc.\n\t 2012-2014 Daniel J. Bernstein\n\t 2004 EdelKey Project.\n\t 2011 Google Inc.\n\t 2018-2019 IBM Corp.\n\t 2012,2014 Intel Corporation.\n\t 2012-2016 Jean-Philippe Aumasson\n\t 2007 KISA(Korea Information Security Agency).\n\t 2004 Kungliga Tekniska H\u00f6gskolan\n\t 2017 National Security Research Institute.\n\t 2006 Network Resonance Inc.\n\t 2005,2007-2020 Nokia\n\t 2006 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2002,2017-2020 Oracle and/or its affiliates.\n\t 1995 Patrick Powell\n\t 2019 Red Hat Inc.\n\t 2017 Ribose Inc.\n\t 2004,2018 Richard Levitte <richard at levitte.org>\n\t 2011 RTFM Inc.\n\t 2012 Samuel Neves <sneves at dei.uc.pt>\n\t 2015-2020 Siemens AG\n\t 2002 The OpenTSA Project.\n\t 2013-2014 Timo Ter\u00e4s <timo.teras at gmail.com>\n\t 2016 Viktor Dukhovni <openssl-users at dukhovni.org>.\n\t 2016 VMS Software Inc.\nLicense: Apache-2.0\n\nLicense: Apache-2.0\n Licensed under the Apache License 2.0 (the \"License\"). You may not use\n this file except in compliance with the License. You can obtain a copy\n in the file LICENSE in the source distribution or at\n https://www.openssl.org/source/license.html\n .\n On Debian systems, the complete text of the Apache 2.0 License\n can be found in `/usr/share/common-licenses/Apache-2.0'\n\nFiles: debian/*\nCopyright: Christoph Martin, Kurt Roeckx, Sebastian Andrzej Siewior\nLicense: Apache-2.0\n\nFiles: external/perl/Text-Template-1.56/*\nCopyright: 2013, Mark Jason Dominus <mjd at cpan.org>.\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libssl3 at 3.0.13-1~deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4278,6 +12239,21 @@
"content": "9b1b269020cec6aced3b39f096f7b67edd1f0d4ab24f412cb6506d0800e19cbf"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Apache-2.0"
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: OpenSSL\nSource: https://www.openssl.org\n\nFiles: *\nCopyright: 1995-2020, The OpenSSL Project Authors\n\t 1995-1998, Eric A. Young, Tim J. Hudson\n\t 2004-2014 Akamai Technologies.\n\t 2008 Andy Polyakov <appro at openssl.org>\n\t 2017 BaishanCloud.\n\t 2015 CloudFlare Inc.\n\t 2014-2016 Cryptography Research Inc.\n\t 2012-2014 Daniel J. Bernstein\n\t 2004 EdelKey Project.\n\t 2011 Google Inc.\n\t 2018-2019 IBM Corp.\n\t 2012,2014 Intel Corporation.\n\t 2012-2016 Jean-Philippe Aumasson\n\t 2007 KISA(Korea Information Security Agency).\n\t 2004 Kungliga Tekniska H\u00f6gskolan\n\t 2017 National Security Research Institute.\n\t 2006 Network Resonance Inc.\n\t 2005,2007-2020 Nokia\n\t 2006 NTT (Nippon Telegraph and Telephone Corporation)\n\t 2002,2017-2020 Oracle and/or its affiliates.\n\t 1995 Patrick Powell\n\t 2019 Red Hat Inc.\n\t 2017 Ribose Inc.\n\t 2004,2018 Richard Levitte <richard at levitte.org>\n\t 2011 RTFM Inc.\n\t 2012 Samuel Neves <sneves at dei.uc.pt>\n\t 2015-2020 Siemens AG\n\t 2002 The OpenTSA Project.\n\t 2013-2014 Timo Ter\u00e4s <timo.teras at gmail.com>\n\t 2016 Viktor Dukhovni <openssl-users at dukhovni.org>.\n\t 2016 VMS Software Inc.\nLicense: Apache-2.0\n\nLicense: Apache-2.0\n Licensed under the Apache License 2.0 (the \"License\"). You may not use\n this file except in compliance with the License. You can obtain a copy\n in the file LICENSE in the source distribution or at\n https://www.openssl.org/source/license.html\n .\n On Debian systems, the complete text of the Apache 2.0 License\n can be found in `/usr/share/common-licenses/Apache-2.0'\n\nFiles: debian/*\nCopyright: Christoph Martin, Kurt Roeckx, Sebastian Andrzej Siewior\nLicense: Apache-2.0\n\nFiles: external/perl/Text-Template-1.56/*\nCopyright: 2013, Mark Jason Dominus <mjd at cpan.org>.\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libstdc++6 at 12.2.0-14?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4294,6 +12270,38 @@
"content": "b1bbf59d929c2725235b88799b59a92836b23c98990e7167f519d378af96fc20"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsystemd-shared at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4310,6 +12318,38 @@
"content": "079c4def8c5d296e2d61242b428ba7b97596abf47564c9856a468a75115b65ca"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libsystemd0 at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4326,6 +12366,38 @@
"content": "eec4dc9d949d2c666b1da3fa762a340e8ba10c3a04d3eed32749a97695c15641"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtasn1-6 at 4.19.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4342,6 +12414,16 @@
"content": "96d8d2e55c51c998becbe4ec3b009022ee61d52526f811696ec10ee11b08910e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nSource: https://metacpan.org/release/Text-CharWidth\nUpstream-Contact: Tomohiro KUBOTA <kubota at debian.org>\nUpstream-Name: Text-CharWidth\n\nFiles: *\nCopyright: 2003, Tomohiro KUBOTA <kubota at debian.org>\n 2001, Paul Marquess\n 1999, Kenneth Albanowski\nLicense: Artistic or GPL-1+\n\nFiles: debian/*\nCopyright: 2003, Tomohiro KUBOTA <kubota at debian.org>\n 2005, 2006, 2008, 2009, 2011, Anibal Monsalve Salazar <anibal at debian.org>\n 2017, intrigeri <intrigeri at debian.org>\n 2019, Laurent Baillet <laurent.baillet at gmail.com>\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtext-charwidth-perl at 0.04-11?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4358,6 +12440,16 @@
"content": "5d5c9bf766aa437c1836bc8bcc66a71dff3855888817da301c0e604c03489b28"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nSource: https://metacpan.org/release/Text-Iconv\nUpstream-Contact: Michael Piotrowski <mxp at dynalabs.de>\nUpstream-Name: Text-Iconv\n\nFiles: *\nCopyright: 2007, Michael Piotrowski <mxp at dynalabs.de>\nLicense: Artistic or GPL-1+\n\nFiles: debian/*\nCopyright: 2000, 2001, 2003, 2004, Steve Haslam <araqnid at debian.org>\n 2002, Josselin Mouette <joss at debian.org>\n 2005, 2006, 2008, 2009, 2011, Anibal Monsalve Salazar <anibal at debian.org>\n 2011, Joey Hess <joeyh at debian.org>\n 2019, gregor herrmann <gregoa at debian.org>\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtext-iconv-perl at 1.7-8?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4374,6 +12466,16 @@
"content": "17f98c7c09af8ac3bdbfd5a5dad32f3f51c71b02cdfc411366f49092a395de85"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nSource: https://metacpan.org/release/Text-WrapI18N\nUpstream-Contact: Tomohiro KUBOTA <kubota at debian.org>\nUpstream-Name: Text-WrapI18N\n\nFiles: *\nCopyright: 2013, Tomohiro KUBOTA <kubota at debian.org>\nLicense: Artistic or GPL-1+\n\nFiles: debian/*\nCopyright: 2003, Tomohiro KUBOTA <kubota at debian.org>\n 2005, 2006, 2008, 2009, Anibal Monsalve Salazar <anibal at debian.org>\n 2015, 2019, gregor herrmann <gregoa at debian.org>\nLicense: Artistic or GPL-1+\n\nLicense: Artistic\n This program is free software; you can redistribute it and/or modify\n it under the terms of the Artistic License, which comes with Perl.\n .\n On Debian systems, the complete text of the Artistic License can be\n found in `/usr/share/common-licenses/Artistic'.\n\nLicense: GPL-1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 1, or (at your option)\n any later version.\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtext-wrapi18n-perl at 0.06-10?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4390,6 +12492,26 @@
"content": "072d908f38f51090ca28ca5afa3b46b2957dc61fe35094c0b851426859a49a51"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "MIT/X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: ncurses\nUpstream-Contact: bug-ncurses at gnu.org\n Thomas Dickey <dickey at his.com>\nSource: https://invisible-mirror.net/archives/ncurses/\n\nFiles: *\nCopyright: 1998-2017,2018 Free Software Foundation, Inc.\n 1996-2020,2021 Thomas E. Dickey\n 2001 Pradeep Padala\nLicense: MIT/X11\n\nFiles: install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n\nFiles: progs/tset.c ncurses/tinfo/read_termcap.c\nCopyright: 1980,1991,1992,1993 The Regents of the University of California\nLicense: BSD-3-clause\n\nLicense: MIT/X11\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, distribute with modifications, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name(s) of the above copyright\n holders shall not be used in advertising or otherwise to promote the\n sale, use or other dealings in this Software without prior written\n authorization.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtinfo6 at 6.4-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4406,6 +12528,49 @@
"content": "3e3ef129b4bf61513144236e15e1b4ec57fa5ae3dc8a72137abdbefb7a63af85"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "name": "__AUTO_PERMISSIVE__",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: package\nSource: https://sourceforge.net/projects/libtirpc/\nComment: The original upstream tarball included a symlink to\n /usr/share/automake-1.16/INSTALL. This source re-pack removes the symlink\n and adds the INSTALL file to the package.\n\nFiles: *\nCopyright: 2005 Bull S.A\nLicense: BSD-3-Clause\n\nFiles: debian/*\nCopyright: 2009 Steinar H. Gunderson <sesse at debian.org>\n 2022 Josue Ortega <josue at debian.org>\nLicense: GPL-2\n\nFiles: src/auth_des.c\n src/auth_none.c\n src/auth_unix.c\n src/authdes_prot.c\n src/authunix_prot.c\n src/bindresvport.c\n src/clnt_bcast.c\n src/clnt_perror.c\n src/clnt_raw.c\n src/clnt_simple.c\n src/clnt_vc.c\n src/debug.c\n src/debug.h\n src/des_crypt.c\n src/getnetconfig.c\n src/getnetpath.c\n src/getrpcent.c\n src/getrpcport.c\n src/key_call.c\n src/key_prot_xdr.c\n src/pmap_clnt.c\n src/pmap_getmaps.c\n src/pmap_getport.c\n src/pmap_prot.c\n src/pmap_prot2.c\n src/pmap_rmt.c\n src/rpc_callmsg.c\n src/rpc_com.h\n src/rpc_commondata.c\n src/rpc_dtablesize.c\n src/rpc_generic.c\n src/rpc_prot.c\n src/rpc_soc.c\n src/rpcb_prot.c\n src/rpcb_st_xdr.c\n src/rtime.c\n src/svc_auth.c\n src/svc_auth_des.c\n src/svc_auth_unix.c\n src/svc_dg.c\n src/svc_generic.c\n src/svc_raw.c\n src/svc_simple.c\n src/svc_vc.c\n src/xdr_array.c\n src/xdr_float.c\n src/xdr_mem.c\n src/xdr_rec.c\n src/xdr_reference.c\n src/xdr_sizeof.c\n src/xdr_stdio.c\n tirpc/rpc/auth_des.h\n tirpc/rpc/auth_unix.h\n tirpc/rpc/des_crypt.h\n tirpc/rpc/pmap_clnt.h\n tirpc/rpc/pmap_prot.h\n tirpc/rpc/pmap_rmt.h\n tirpc/rpc/raw.h\n tirpc/rpc/rpc_com.h\n tirpc/rpc/rpc_msg.h\n tirpc/rpc/rpcb_clnt.h\n tirpc/rpc/rpcb_prot.h\n tirpc/rpc/svc_auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\n 1986-1991 Sun Microsystems Inc.\n 1986-1991 Sun Microsystems Inc. In addition, portions of such source code were derived from Berkeley\n 1996 Jason Downs.\n 2014 Red Hat, Steve Dickson <steved at redhat.com>\nLicense: BSD-3-Clause\n\nFiles: Makefile.in\n aclocal.m4\n compile\n config.guess\n config.sub\n configure\n depcomp\n doc/Makefile.in\n install-sh\n ltmain.sh\n m4/libtool.m4\n m4/ltoptions.m4\n m4/ltsugar.m4\n m4/ltversion.m4\n m4/lt~obsolete.m4\n man/Makefile.in\n missing\n src/Makefile.in\nCopyright: 1992-2017 Free Software Foundation, Inc.\n 1994 X Consortium\nLicense: __AUTO_PERMISSIVE__\n Autogenerated files with permissive licenses.\n\nFiles: man/rpc_gss_get_error.3t\n man/rpc_gss_get_mech_info.3t\n man/rpc_gss_get_mechanisms.3t\n man/rpc_gss_get_principal_name.3t\n man/rpc_gss_get_versions.3t\n man/rpc_gss_getcred.3t\n man/rpc_gss_is_installed.3t\n man/rpc_gss_max_data_length.3t\n man/rpc_gss_mech_to_oid.3t\n man/rpc_gss_qop_to_num.3t\n man/rpc_gss_seccreate.3t\n man/rpc_gss_set_callback.3t\n man/rpc_gss_set_defaults.3t\n man/rpc_gss_set_svc_name.3t\n man/rpc_gss_svc_max_data_length.3t\n man/rpcsec_gss.3t\nCopyright: 2008 Isilon Inc http://www.isilon.com/\nLicense: BSD-2-Clause\n\nFiles: src/auth_gss.c\n src/authgss_prot.c\n src/svc_auth_gss.c\n src/svc_auth_none.c\n tirpc/rpc/auth_gss.h\nCopyright: 2000 Dug Song <dugsong at UMICH.EDU>. all wrongs reversed.\n 2000 The Regents of the University of Michigan.\nLicense: BSD-3-Clause\n\nFiles: src/binddynport.c\n src/rpc_gss_utils.c\n tirpc/rpc/rpcsec_gss.h\n tirpc/rpc/svc_auth_gss.h\nCopyright: 2013-2018 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/netname.c\n src/netnamer.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/clnt_generic.c\n src/rpcb_clnt.c\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/crypt_client.c\n tirpc/rpcsvc/crypt.x\nCopyright: 1996 Bill Paul <wpaul at ctr.columbia.edu>.\nLicense: BSD-4-Clause\n\nFiles: src/des_impl.c\nCopyright: 1992 Eric Young Collected from libdes and modified for SECURE RPC Martin Kuck 1994\nLicense: LGPL-2.1+\n\nFiles: INSTALL\nCopyright: 1994-2013 Free Software Foundation, Inc.\nLicense: PERMISSIVE\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n .\n Basic Installation\n\nFiles: tirpc/rpc/nettype.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/reentrant.h\nCopyright: 1997-1998 The NetBSD Foundation, Inc.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/svc_mt.h\nCopyright: 2015 Axentia Technologies AB.\nLicense: BSD-2-Clause\n\nFiles: src/getpeereid.c\nCopyright: 2001 Dima Dorfman.\nLicense: BSD-2-Clause\n\nFiles: tirpc/un-namespace.h\nCopyright: 2001 Daniel Eischen <deischen at FreeBSD.org>.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/rpcent.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/epoll_sub.c\nCopyright: 2003 Niels Provos <provos at citi.umich.edu>\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/xdr.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/rpcdname.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/types.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/des_soft.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc.c\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_soc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/xdr.c\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/getpublickey.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/rpc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt_soc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc_run.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/des.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/nis.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_dg.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of Sun Microsystems, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Bill Paul.\n 4. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n This file is distributed under the terms of the GNU Lesser General\n Public License, version 2.1 or later - see the file COPYING.LIB for details.\n If you did not receive a copy of the license with this program, please\n see <http://www.gnu.org/licenses/> to obtain a copy.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "PERMISSIVE",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: package\nSource: https://sourceforge.net/projects/libtirpc/\nComment: The original upstream tarball included a symlink to\n /usr/share/automake-1.16/INSTALL. This source re-pack removes the symlink\n and adds the INSTALL file to the package.\n\nFiles: *\nCopyright: 2005 Bull S.A\nLicense: BSD-3-Clause\n\nFiles: debian/*\nCopyright: 2009 Steinar H. Gunderson <sesse at debian.org>\n 2022 Josue Ortega <josue at debian.org>\nLicense: GPL-2\n\nFiles: src/auth_des.c\n src/auth_none.c\n src/auth_unix.c\n src/authdes_prot.c\n src/authunix_prot.c\n src/bindresvport.c\n src/clnt_bcast.c\n src/clnt_perror.c\n src/clnt_raw.c\n src/clnt_simple.c\n src/clnt_vc.c\n src/debug.c\n src/debug.h\n src/des_crypt.c\n src/getnetconfig.c\n src/getnetpath.c\n src/getrpcent.c\n src/getrpcport.c\n src/key_call.c\n src/key_prot_xdr.c\n src/pmap_clnt.c\n src/pmap_getmaps.c\n src/pmap_getport.c\n src/pmap_prot.c\n src/pmap_prot2.c\n src/pmap_rmt.c\n src/rpc_callmsg.c\n src/rpc_com.h\n src/rpc_commondata.c\n src/rpc_dtablesize.c\n src/rpc_generic.c\n src/rpc_prot.c\n src/rpc_soc.c\n src/rpcb_prot.c\n src/rpcb_st_xdr.c\n src/rtime.c\n src/svc_auth.c\n src/svc_auth_des.c\n src/svc_auth_unix.c\n src/svc_dg.c\n src/svc_generic.c\n src/svc_raw.c\n src/svc_simple.c\n src/svc_vc.c\n src/xdr_array.c\n src/xdr_float.c\n src/xdr_mem.c\n src/xdr_rec.c\n src/xdr_reference.c\n src/xdr_sizeof.c\n src/xdr_stdio.c\n tirpc/rpc/auth_des.h\n tirpc/rpc/auth_unix.h\n tirpc/rpc/des_crypt.h\n tirpc/rpc/pmap_clnt.h\n tirpc/rpc/pmap_prot.h\n tirpc/rpc/pmap_rmt.h\n tirpc/rpc/raw.h\n tirpc/rpc/rpc_com.h\n tirpc/rpc/rpc_msg.h\n tirpc/rpc/rpcb_clnt.h\n tirpc/rpc/rpcb_prot.h\n tirpc/rpc/svc_auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\n 1986-1991 Sun Microsystems Inc.\n 1986-1991 Sun Microsystems Inc. In addition, portions of such source code were derived from Berkeley\n 1996 Jason Downs.\n 2014 Red Hat, Steve Dickson <steved at redhat.com>\nLicense: BSD-3-Clause\n\nFiles: Makefile.in\n aclocal.m4\n compile\n config.guess\n config.sub\n configure\n depcomp\n doc/Makefile.in\n install-sh\n ltmain.sh\n m4/libtool.m4\n m4/ltoptions.m4\n m4/ltsugar.m4\n m4/ltversion.m4\n m4/lt~obsolete.m4\n man/Makefile.in\n missing\n src/Makefile.in\nCopyright: 1992-2017 Free Software Foundation, Inc.\n 1994 X Consortium\nLicense: __AUTO_PERMISSIVE__\n Autogenerated files with permissive licenses.\n\nFiles: man/rpc_gss_get_error.3t\n man/rpc_gss_get_mech_info.3t\n man/rpc_gss_get_mechanisms.3t\n man/rpc_gss_get_principal_name.3t\n man/rpc_gss_get_versions.3t\n man/rpc_gss_getcred.3t\n man/rpc_gss_is_installed.3t\n man/rpc_gss_max_data_length.3t\n man/rpc_gss_mech_to_oid.3t\n man/rpc_gss_qop_to_num.3t\n man/rpc_gss_seccreate.3t\n man/rpc_gss_set_callback.3t\n man/rpc_gss_set_defaults.3t\n man/rpc_gss_set_svc_name.3t\n man/rpc_gss_svc_max_data_length.3t\n man/rpcsec_gss.3t\nCopyright: 2008 Isilon Inc http://www.isilon.com/\nLicense: BSD-2-Clause\n\nFiles: src/auth_gss.c\n src/authgss_prot.c\n src/svc_auth_gss.c\n src/svc_auth_none.c\n tirpc/rpc/auth_gss.h\nCopyright: 2000 Dug Song <dugsong at UMICH.EDU>. all wrongs reversed.\n 2000 The Regents of the University of Michigan.\nLicense: BSD-3-Clause\n\nFiles: src/binddynport.c\n src/rpc_gss_utils.c\n tirpc/rpc/rpcsec_gss.h\n tirpc/rpc/svc_auth_gss.h\nCopyright: 2013-2018 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/netname.c\n src/netnamer.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/clnt_generic.c\n src/rpcb_clnt.c\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/crypt_client.c\n tirpc/rpcsvc/crypt.x\nCopyright: 1996 Bill Paul <wpaul at ctr.columbia.edu>.\nLicense: BSD-4-Clause\n\nFiles: src/des_impl.c\nCopyright: 1992 Eric Young Collected from libdes and modified for SECURE RPC Martin Kuck 1994\nLicense: LGPL-2.1+\n\nFiles: INSTALL\nCopyright: 1994-2013 Free Software Foundation, Inc.\nLicense: PERMISSIVE\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n .\n Basic Installation\n\nFiles: tirpc/rpc/nettype.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/reentrant.h\nCopyright: 1997-1998 The NetBSD Foundation, Inc.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/svc_mt.h\nCopyright: 2015 Axentia Technologies AB.\nLicense: BSD-2-Clause\n\nFiles: src/getpeereid.c\nCopyright: 2001 Dima Dorfman.\nLicense: BSD-2-Clause\n\nFiles: tirpc/un-namespace.h\nCopyright: 2001 Daniel Eischen <deischen at FreeBSD.org>.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/rpcent.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/epoll_sub.c\nCopyright: 2003 Niels Provos <provos at citi.umich.edu>\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/xdr.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/rpcdname.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/types.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/des_soft.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc.c\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_soc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/xdr.c\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/getpublickey.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/rpc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt_soc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc_run.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/des.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/nis.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_dg.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of Sun Microsystems, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Bill Paul.\n 4. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n This file is distributed under the terms of the GNU Lesser General\n Public License, version 2.1 or later - see the file COPYING.LIB for details.\n If you did not receive a copy of the license with this program, please\n see <http://www.gnu.org/licenses/> to obtain a copy.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libtirpc-common at 1.3.3+ds-1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4414,12 +12579,55 @@
"version": "1.3.3+ds-1",
"hashes": [
{
- "alg": "MD5",
- "content": "b759d3e9dc474c3404da044249e84d2b"
+ "alg": "MD5",
+ "content": "b759d3e9dc474c3404da044249e84d2b"
+ },
+ {
+ "alg": "SHA-256",
+ "content": "2a46d5a5e9486da11ffeff5740931740d6deae4f92cd6098df060dc5dff1e1c7"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
},
{
- "alg": "SHA-256",
- "content": "2a46d5a5e9486da11ffeff5740931740d6deae4f92cd6098df060dc5dff1e1c7"
+ "license": {
+ "name": "__AUTO_PERMISSIVE__",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: package\nSource: https://sourceforge.net/projects/libtirpc/\nComment: The original upstream tarball included a symlink to\n /usr/share/automake-1.16/INSTALL. This source re-pack removes the symlink\n and adds the INSTALL file to the package.\n\nFiles: *\nCopyright: 2005 Bull S.A\nLicense: BSD-3-Clause\n\nFiles: debian/*\nCopyright: 2009 Steinar H. Gunderson <sesse at debian.org>\n 2022 Josue Ortega <josue at debian.org>\nLicense: GPL-2\n\nFiles: src/auth_des.c\n src/auth_none.c\n src/auth_unix.c\n src/authdes_prot.c\n src/authunix_prot.c\n src/bindresvport.c\n src/clnt_bcast.c\n src/clnt_perror.c\n src/clnt_raw.c\n src/clnt_simple.c\n src/clnt_vc.c\n src/debug.c\n src/debug.h\n src/des_crypt.c\n src/getnetconfig.c\n src/getnetpath.c\n src/getrpcent.c\n src/getrpcport.c\n src/key_call.c\n src/key_prot_xdr.c\n src/pmap_clnt.c\n src/pmap_getmaps.c\n src/pmap_getport.c\n src/pmap_prot.c\n src/pmap_prot2.c\n src/pmap_rmt.c\n src/rpc_callmsg.c\n src/rpc_com.h\n src/rpc_commondata.c\n src/rpc_dtablesize.c\n src/rpc_generic.c\n src/rpc_prot.c\n src/rpc_soc.c\n src/rpcb_prot.c\n src/rpcb_st_xdr.c\n src/rtime.c\n src/svc_auth.c\n src/svc_auth_des.c\n src/svc_auth_unix.c\n src/svc_dg.c\n src/svc_generic.c\n src/svc_raw.c\n src/svc_simple.c\n src/svc_vc.c\n src/xdr_array.c\n src/xdr_float.c\n src/xdr_mem.c\n src/xdr_rec.c\n src/xdr_reference.c\n src/xdr_sizeof.c\n src/xdr_stdio.c\n tirpc/rpc/auth_des.h\n tirpc/rpc/auth_unix.h\n tirpc/rpc/des_crypt.h\n tirpc/rpc/pmap_clnt.h\n tirpc/rpc/pmap_prot.h\n tirpc/rpc/pmap_rmt.h\n tirpc/rpc/raw.h\n tirpc/rpc/rpc_com.h\n tirpc/rpc/rpc_msg.h\n tirpc/rpc/rpcb_clnt.h\n tirpc/rpc/rpcb_prot.h\n tirpc/rpc/svc_auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\n 1986-1991 Sun Microsystems Inc.\n 1986-1991 Sun Microsystems Inc. In addition, portions of such source code were derived from Berkeley\n 1996 Jason Downs.\n 2014 Red Hat, Steve Dickson <steved at redhat.com>\nLicense: BSD-3-Clause\n\nFiles: Makefile.in\n aclocal.m4\n compile\n config.guess\n config.sub\n configure\n depcomp\n doc/Makefile.in\n install-sh\n ltmain.sh\n m4/libtool.m4\n m4/ltoptions.m4\n m4/ltsugar.m4\n m4/ltversion.m4\n m4/lt~obsolete.m4\n man/Makefile.in\n missing\n src/Makefile.in\nCopyright: 1992-2017 Free Software Foundation, Inc.\n 1994 X Consortium\nLicense: __AUTO_PERMISSIVE__\n Autogenerated files with permissive licenses.\n\nFiles: man/rpc_gss_get_error.3t\n man/rpc_gss_get_mech_info.3t\n man/rpc_gss_get_mechanisms.3t\n man/rpc_gss_get_principal_name.3t\n man/rpc_gss_get_versions.3t\n man/rpc_gss_getcred.3t\n man/rpc_gss_is_installed.3t\n man/rpc_gss_max_data_length.3t\n man/rpc_gss_mech_to_oid.3t\n man/rpc_gss_qop_to_num.3t\n man/rpc_gss_seccreate.3t\n man/rpc_gss_set_callback.3t\n man/rpc_gss_set_defaults.3t\n man/rpc_gss_set_svc_name.3t\n man/rpc_gss_svc_max_data_length.3t\n man/rpcsec_gss.3t\nCopyright: 2008 Isilon Inc http://www.isilon.com/\nLicense: BSD-2-Clause\n\nFiles: src/auth_gss.c\n src/authgss_prot.c\n src/svc_auth_gss.c\n src/svc_auth_none.c\n tirpc/rpc/auth_gss.h\nCopyright: 2000 Dug Song <dugsong at UMICH.EDU>. all wrongs reversed.\n 2000 The Regents of the University of Michigan.\nLicense: BSD-3-Clause\n\nFiles: src/binddynport.c\n src/rpc_gss_utils.c\n tirpc/rpc/rpcsec_gss.h\n tirpc/rpc/svc_auth_gss.h\nCopyright: 2013-2018 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/netname.c\n src/netnamer.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/clnt_generic.c\n src/rpcb_clnt.c\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/crypt_client.c\n tirpc/rpcsvc/crypt.x\nCopyright: 1996 Bill Paul <wpaul at ctr.columbia.edu>.\nLicense: BSD-4-Clause\n\nFiles: src/des_impl.c\nCopyright: 1992 Eric Young Collected from libdes and modified for SECURE RPC Martin Kuck 1994\nLicense: LGPL-2.1+\n\nFiles: INSTALL\nCopyright: 1994-2013 Free Software Foundation, Inc.\nLicense: PERMISSIVE\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n .\n Basic Installation\n\nFiles: tirpc/rpc/nettype.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/reentrant.h\nCopyright: 1997-1998 The NetBSD Foundation, Inc.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/svc_mt.h\nCopyright: 2015 Axentia Technologies AB.\nLicense: BSD-2-Clause\n\nFiles: src/getpeereid.c\nCopyright: 2001 Dima Dorfman.\nLicense: BSD-2-Clause\n\nFiles: tirpc/un-namespace.h\nCopyright: 2001 Daniel Eischen <deischen at FreeBSD.org>.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/rpcent.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/epoll_sub.c\nCopyright: 2003 Niels Provos <provos at citi.umich.edu>\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/xdr.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/rpcdname.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/types.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/des_soft.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc.c\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_soc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/xdr.c\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/getpublickey.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/rpc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt_soc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc_run.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/des.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/nis.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_dg.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of Sun Microsystems, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Bill Paul.\n 4. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n This file is distributed under the terms of the GNU Lesser General\n Public License, version 2.1 or later - see the file COPYING.LIB for details.\n If you did not receive a copy of the license with this program, please\n see <http://www.gnu.org/licenses/> to obtain a copy.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "PERMISSIVE",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: package\nSource: https://sourceforge.net/projects/libtirpc/\nComment: The original upstream tarball included a symlink to\n /usr/share/automake-1.16/INSTALL. This source re-pack removes the symlink\n and adds the INSTALL file to the package.\n\nFiles: *\nCopyright: 2005 Bull S.A\nLicense: BSD-3-Clause\n\nFiles: debian/*\nCopyright: 2009 Steinar H. Gunderson <sesse at debian.org>\n 2022 Josue Ortega <josue at debian.org>\nLicense: GPL-2\n\nFiles: src/auth_des.c\n src/auth_none.c\n src/auth_unix.c\n src/authdes_prot.c\n src/authunix_prot.c\n src/bindresvport.c\n src/clnt_bcast.c\n src/clnt_perror.c\n src/clnt_raw.c\n src/clnt_simple.c\n src/clnt_vc.c\n src/debug.c\n src/debug.h\n src/des_crypt.c\n src/getnetconfig.c\n src/getnetpath.c\n src/getrpcent.c\n src/getrpcport.c\n src/key_call.c\n src/key_prot_xdr.c\n src/pmap_clnt.c\n src/pmap_getmaps.c\n src/pmap_getport.c\n src/pmap_prot.c\n src/pmap_prot2.c\n src/pmap_rmt.c\n src/rpc_callmsg.c\n src/rpc_com.h\n src/rpc_commondata.c\n src/rpc_dtablesize.c\n src/rpc_generic.c\n src/rpc_prot.c\n src/rpc_soc.c\n src/rpcb_prot.c\n src/rpcb_st_xdr.c\n src/rtime.c\n src/svc_auth.c\n src/svc_auth_des.c\n src/svc_auth_unix.c\n src/svc_dg.c\n src/svc_generic.c\n src/svc_raw.c\n src/svc_simple.c\n src/svc_vc.c\n src/xdr_array.c\n src/xdr_float.c\n src/xdr_mem.c\n src/xdr_rec.c\n src/xdr_reference.c\n src/xdr_sizeof.c\n src/xdr_stdio.c\n tirpc/rpc/auth_des.h\n tirpc/rpc/auth_unix.h\n tirpc/rpc/des_crypt.h\n tirpc/rpc/pmap_clnt.h\n tirpc/rpc/pmap_prot.h\n tirpc/rpc/pmap_rmt.h\n tirpc/rpc/raw.h\n tirpc/rpc/rpc_com.h\n tirpc/rpc/rpc_msg.h\n tirpc/rpc/rpcb_clnt.h\n tirpc/rpc/rpcb_prot.h\n tirpc/rpc/svc_auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\n 1986-1991 Sun Microsystems Inc.\n 1986-1991 Sun Microsystems Inc. In addition, portions of such source code were derived from Berkeley\n 1996 Jason Downs.\n 2014 Red Hat, Steve Dickson <steved at redhat.com>\nLicense: BSD-3-Clause\n\nFiles: Makefile.in\n aclocal.m4\n compile\n config.guess\n config.sub\n configure\n depcomp\n doc/Makefile.in\n install-sh\n ltmain.sh\n m4/libtool.m4\n m4/ltoptions.m4\n m4/ltsugar.m4\n m4/ltversion.m4\n m4/lt~obsolete.m4\n man/Makefile.in\n missing\n src/Makefile.in\nCopyright: 1992-2017 Free Software Foundation, Inc.\n 1994 X Consortium\nLicense: __AUTO_PERMISSIVE__\n Autogenerated files with permissive licenses.\n\nFiles: man/rpc_gss_get_error.3t\n man/rpc_gss_get_mech_info.3t\n man/rpc_gss_get_mechanisms.3t\n man/rpc_gss_get_principal_name.3t\n man/rpc_gss_get_versions.3t\n man/rpc_gss_getcred.3t\n man/rpc_gss_is_installed.3t\n man/rpc_gss_max_data_length.3t\n man/rpc_gss_mech_to_oid.3t\n man/rpc_gss_qop_to_num.3t\n man/rpc_gss_seccreate.3t\n man/rpc_gss_set_callback.3t\n man/rpc_gss_set_defaults.3t\n man/rpc_gss_set_svc_name.3t\n man/rpc_gss_svc_max_data_length.3t\n man/rpcsec_gss.3t\nCopyright: 2008 Isilon Inc http://www.isilon.com/\nLicense: BSD-2-Clause\n\nFiles: src/auth_gss.c\n src/authgss_prot.c\n src/svc_auth_gss.c\n src/svc_auth_none.c\n tirpc/rpc/auth_gss.h\nCopyright: 2000 Dug Song <dugsong at UMICH.EDU>. all wrongs reversed.\n 2000 The Regents of the University of Michigan.\nLicense: BSD-3-Clause\n\nFiles: src/binddynport.c\n src/rpc_gss_utils.c\n tirpc/rpc/rpcsec_gss.h\n tirpc/rpc/svc_auth_gss.h\nCopyright: 2013-2018 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/netname.c\n src/netnamer.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/clnt_generic.c\n src/rpcb_clnt.c\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/crypt_client.c\n tirpc/rpcsvc/crypt.x\nCopyright: 1996 Bill Paul <wpaul at ctr.columbia.edu>.\nLicense: BSD-4-Clause\n\nFiles: src/des_impl.c\nCopyright: 1992 Eric Young Collected from libdes and modified for SECURE RPC Martin Kuck 1994\nLicense: LGPL-2.1+\n\nFiles: INSTALL\nCopyright: 1994-2013 Free Software Foundation, Inc.\nLicense: PERMISSIVE\n Copying and distribution of this file, with or without modification,\n are permitted in any medium without royalty provided the copyright\n notice and this notice are preserved. This file is offered as-is,\n without warranty of any kind.\n .\n Basic Installation\n\nFiles: tirpc/rpc/nettype.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/reentrant.h\nCopyright: 1997-1998 The NetBSD Foundation, Inc.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/svc_mt.h\nCopyright: 2015 Axentia Technologies AB.\nLicense: BSD-2-Clause\n\nFiles: src/getpeereid.c\nCopyright: 2001 Dima Dorfman.\nLicense: BSD-2-Clause\n\nFiles: tirpc/un-namespace.h\nCopyright: 2001 Daniel Eischen <deischen at FreeBSD.org>.\nLicense: BSD-2-Clause\n\nFiles: tirpc/rpc/rpcent.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/epoll_sub.c\nCopyright: 2003 Niels Provos <provos at citi.umich.edu>\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/xdr.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/rpcdname.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/types.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/des_soft.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc.c\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/auth.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_soc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/xdr.c\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/getpublickey.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/rpc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/clnt_soc.h\nCopyright: 1984-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/svc_run.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/des.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc.h\nCopyright: 1986-2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nFiles: src/nis.h\nCopyright: 2010 Oracle America, Inc.\nLicense: BSD-3-Clause\n\nFiles: tirpc/rpc/svc_dg.h\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: BSD-3-Clause\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n - Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n - Neither the name of Sun Microsystems, Inc. nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by Bill Paul.\n 4. Neither the name of the author nor the names of any co-contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: LGPL-2.1+\n This file is distributed under the terms of the GNU Lesser General\n Public License, version 2.1 or later - see the file COPYING.LIB for details.\n If you did not receive a copy of the license with this program, please\n see <http://www.gnu.org/licenses/> to obtain a copy.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
}
],
"purl": "pkg:deb/debian/libtirpc3 at 1.3.3+ds-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
@@ -4438,6 +12646,38 @@
"content": "ed1e715a79492808b9aa3a25ebca508743aef282c099b6e0216b5dd8dd8b3796"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libudev1 at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4454,6 +12694,52 @@
"content": "d466bbfe011d764d793c1d9d777cad9c7cf65b938e11598f27408171ad95a951"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "LGPL-3.0-or-later OR GPL-2.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libunistring\nUpstream-Contact: Bruno Haible <bruno at clisp.org>\nSource: http://ftp.gnu.org/gnu/libunistring/\n\nFiles: *\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gnulib-m4/* m4/*.m4\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: FreeSoftware\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nFiles: doc/*\nCopyright: 2001-2022 Free Software Foundation, Inc.\nLicense: GPL-3+ or GFDL-1.2+\n\nFiles: tests/* woe32dll/* autogen.sh\nCopyright: 1990-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/*\nCopyright: 1995-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: m4/init-package-version.m4\n build-aux/ltmain.sh\nCopyright: 1992-2021, Free Software Foundation, Inc.\nLicense: GPL-2+ with distribution exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n\nFiles: build-aux/texi2html\nCopyright: 1999-2005 Patrice Dumas <dumas at centre-cired.fr>,\n 1999-2005 Derek Price <derek at ximbiot.com>,\n 1999-2005 Adrian Aichner <adrian at xemacs.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: MIT\n\nFiles: debian/*\nCopyright: 2009-2011 Andreas Rottmann <rotty at debian.org>\n 2017-2022 J\u00f6rg Frings-F\u00fcrst <debian at jff.email>\nLicense: GPL-3+\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU General Public License\n version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, \n Boston, MA 02110-1301, USA.\n .\n On Debian systems the full text of the GNU General Public License\n version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GFDL-1.2+\n This manual is covered by the GNU FDL. Permission is granted to\n copy, distribute and/or modify this document under the terms of the\n GNU Free Documentation License (FDL), either version 1.2 of the\n License, or (at your option) any later version published by the Free\n Software Foundation (FSF); with no Invariant Sections, with no\n Front-Cover Text, and with no Back-Cover Texts.\n .\n On Debian systems the full text of the GNU Free Documentation License\n version 1.2 can be found in the file\n `/usr/share/common-licenses/GFDL-1.2'.\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "FreeSoftware",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libunistring\nUpstream-Contact: Bruno Haible <bruno at clisp.org>\nSource: http://ftp.gnu.org/gnu/libunistring/\n\nFiles: *\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gnulib-m4/* m4/*.m4\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: FreeSoftware\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nFiles: doc/*\nCopyright: 2001-2022 Free Software Foundation, Inc.\nLicense: GPL-3+ or GFDL-1.2+\n\nFiles: tests/* woe32dll/* autogen.sh\nCopyright: 1990-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/*\nCopyright: 1995-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: m4/init-package-version.m4\n build-aux/ltmain.sh\nCopyright: 1992-2021, Free Software Foundation, Inc.\nLicense: GPL-2+ with distribution exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n\nFiles: build-aux/texi2html\nCopyright: 1999-2005 Patrice Dumas <dumas at centre-cired.fr>,\n 1999-2005 Derek Price <derek at ximbiot.com>,\n 1999-2005 Adrian Aichner <adrian at xemacs.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: MIT\n\nFiles: debian/*\nCopyright: 2009-2011 Andreas Rottmann <rotty at debian.org>\n 2017-2022 J\u00f6rg Frings-F\u00fcrst <debian at jff.email>\nLicense: GPL-3+\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU General Public License\n version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, \n Boston, MA 02110-1301, USA.\n .\n On Debian systems the full text of the GNU General Public License\n version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GFDL-1.2+\n This manual is covered by the GNU FDL. Permission is granted to\n copy, distribute and/or modify this document under the terms of the\n GNU Free Documentation License (FDL), either version 1.2 of the\n License, or (at your option) any later version published by the Free\n Software Foundation (FSF); with no Invariant Sections, with no\n Front-Cover Text, and with no Back-Cover Texts.\n .\n On Debian systems the full text of the GNU Free Documentation License\n version 1.2 can be found in the file\n `/usr/share/common-licenses/GFDL-1.2'.\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later OR GFDL-1.2-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libunistring\nUpstream-Contact: Bruno Haible <bruno at clisp.org>\nSource: http://ftp.gnu.org/gnu/libunistring/\n\nFiles: *\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: LGPL-3+ or GPL-2+\n\nFiles: gnulib-m4/* m4/*.m4\nCopyright: 1995-2022 Free Software Foundation, Inc.\nLicense: FreeSoftware\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n\nFiles: doc/*\nCopyright: 2001-2022 Free Software Foundation, Inc.\nLicense: GPL-3+ or GFDL-1.2+\n\nFiles: tests/* woe32dll/* autogen.sh\nCopyright: 1990-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nFiles: build-aux/*\nCopyright: 1995-2017 Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: m4/init-package-version.m4\n build-aux/ltmain.sh\nCopyright: 1992-2021, Free Software Foundation, Inc.\nLicense: GPL-2+ with distribution exception\n This file is free software, distributed under the terms of the GNU\n General Public License. As a special exception to the GNU General\n Public License, this file may be distributed as part of a program\n that contains a configuration script generated by Autoconf, under\n the same distribution terms as the rest of that program.\n\nFiles: build-aux/texi2html\nCopyright: 1999-2005 Patrice Dumas <dumas at centre-cired.fr>,\n 1999-2005 Derek Price <derek at ximbiot.com>,\n 1999-2005 Adrian Aichner <adrian at xemacs.org>\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994, X Consortium\nLicense: MIT\n\nFiles: debian/*\nCopyright: 2009-2011 Andreas Rottmann <rotty at debian.org>\n 2017-2022 J\u00f6rg Frings-F\u00fcrst <debian at jff.email>\nLicense: GPL-3+\n\nLicense: LGPL-3+\n This program is free software: you can redistribute it and/or modify it\n under the terms of the GNU Lesser General Public License as published\n by the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU Lesser General Public\n License version 3 can be found in the file\n `/usr/share/common-licenses/LGPL-3'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems the full text of the GNU General Public License\n version 3 can be found in the file\n `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, \n Boston, MA 02110-1301, USA.\n .\n On Debian systems the full text of the GNU General Public License\n version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GFDL-1.2+\n This manual is covered by the GNU FDL. Permission is granted to\n copy, distribute and/or modify this document under the terms of the\n GNU Free Documentation License (FDL), either version 1.2 of the\n License, or (at your option) any later version published by the Free\n Software Foundation (FSF); with no Invariant Sections, with no\n Front-Cover Text, and with no Back-Cover Texts.\n .\n On Debian systems the full text of the GNU Free Documentation License\n version 1.2 can be found in the file\n `/usr/share/common-licenses/GFDL-1.2'.\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH distribution exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libunistring2 at 1.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4470,6 +12756,71 @@
"content": "1ff16517fd1cfaa266de47255b98c44ff51e8a1653f7d8f1fe9c386ff0f1aa7e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libuuid1 at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4486,6 +12837,31 @@
"content": "cb841d66950a43af4a398625313d2f3da9065299c9738538de6c2c3495857040"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "custom",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: iptables\nUpstream-Contact: Netfilter Developer List <netfilter at vger.kernel.org>\nSource: https://www.netfilter.org/\n\nFiles: *\nCopyright: 2000-2002, the netfilter coreteam <coreteam at netfilter.org>\n Paul 'Rusty' Russell <rusty at rustcorp.com.au>\n Marc Boucher <marc+nf at mbsi.ca>\n James Morris <jmorris at intercode.com.au>\n Harald Welte <laforge at gnumonks.org>\n Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libebt_802_3.c\nCopyright: 2003 Chris Vitale <csv at bluetail.com>\nLicense: GPL-2\n\nFiles: extensions/libebt_ip.c extensions/libebt_log.c extensions/libebt_mark*.c\nCopyright: 2002 Bart De Schuymer <bdschuym at pandora.be>\nLicense: GPL-2\n\nFiles: extensions/libebt_limit.c\nCopyright: 2003 Tom Marshall <tommy at home.tig-grr.com>\nLicense: GPL-2\n\nFiles: extensions/libebt_nflog.c\nCopyright: 2008 Peter Warasin <peter at endian.com>\nLicense: GPL-2\n\nFiles: extensions/libip6t_DNAT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_DNPT.c\nCopyright: 2012-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_MASQUERADE.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_NETMAP.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_REDIRECT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_REJECT.c\nCopyright: 2000, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libip6t_SNAT.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_SNPT.c\nCopyright: 2012-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libip6t_mh.c\nCopyright: 2006, USAGI/WIDE Project\nLicense: GPL-2\n\nFiles: extensions/libipt_CLUSTERIP.c\nCopyright: 2003, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ECN.c\nCopyright: 2002, by Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_REJECT.c\nCopyright: 2000, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libipt_TTL.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ULOG.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libipt_ttl.c\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_AUDIT.c\nCopyright: 2010-2011, Thomas Graf <tgraf at redhat.com>\n 2010-2011, Red Hat, Inc.\nLicense: GPL-2\n\nFiles: extensions/libxt_CHECKSUM.c\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\n 2010, Red Hat, Inc\nLicense: GPL-2\n\nFiles: extensions/libxt_CLASSIFY.c\nCopyright: 2003-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_CONNMARK.c\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_CONNSECMARK.c\nCopyright: 2006, Red Hat, Inc., James Morris <jmorris at redhat.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_CT.c\nCopyright: 2010-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_DSCP.c\nCopyright: 2000-2002, Matthew G. Marsh <mgm at paktronix.com>\n Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_HMARK.c\nCopyright: 2012, Hans Schillstrom <hans.schillstrom at ericsson.com>\n 2012, Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_IDLETIMER.c\nCopyright: 2010, Nokia Corporation\nLicense: GPL-2\n\nFiles: extensions/libxt_LED.c\nCopyright: 2008, Adam Nielsen <a.nielsen at shikadi.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_NFQUEUE.c\nCopyright: 2005, by Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_RATEEST.c\nCopyright: 2008-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_SECMARK.c\nCopyright: 2006, Red Hat, Inc., James Morris <jmorris at redhat.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_SET.c\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2010, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libxt_SYNPROXY.c\nCopyright: 2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_TCPMSS.c\nCopyright: 2000, Marc Boucher\nLicense: GPL-2\n\nFiles: extensions/libxt_TCPOPTSTRIP.c\nCopyright: 2007, Sven Schnelle <svens at bitebene.org>\n 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_TEE.c\nCopyright: 2007, Sebastian Cla\u00dfen <sebastian.classen [at] freenet.ag>\n 2007-2010, Jan Engelhardt <jengelh [at] medozas de>\nLicense: GPL-2\n\nFiles: extensions/libxt_TOS.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_TPROXY.c\nCopyright: 2002-2008, BalaBit IT Ltd.\nLicense: GPL-2\n\nFiles: extensions/libxt_addrtype.c\nCopyright: 2003-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_bpf.c\nCopyright: 2013, Google, Inc.\nLicense: GPL-2\n\nFiles: extensions/libxt_cluster.c\nCopyright: 2009, Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_connmark.c\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: extensions/libxt_conntrack.c\nCopyright: 2001, Marc Boucher (marc at mbsi.ca).\n 2007-2008, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_dccp.c\nCopyright: 2005, by Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_devgroup.c\nCopyright: 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_dscp.c\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_ecn.c\nCopyright: 2002, Harald Welte <laforge at netfilter.org>\n 2011, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_hashlimit.c\nCopyright: 2003-2004, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_osf.c\nCopyright: 2003+, Evgeniy Polyakov <zbr at ioremap.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_owner.c\nCopyright: 2007-2008, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_policy.c\nCopyright: 2005-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_rateest.c\nCopyright: 2008-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_sctp.c\nCopyright: 2003, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: extensions/libxt_set.c\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2010, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: extensions/libxt_socket.c\nCopyright: 2007, BalaBit IT Ltd.\nLicense: GPL-2\n\nFiles: extensions/libxt_statistic.c\nCopyright: 2006-2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_string.c\nCopyright: 2000, Emmanuel Roger <winfield at freegates.be>\n 2005-08-05, Pablo Neira Ayuso <pablo at eurodev.net>\nLicense: GPL-2\n\nFiles: extensions/libxt_time.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_tos.c\nCopyright: 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: extensions/libxt_u32.c\nCopyright: 2002, Don Cohen <don-netf at isis.cs3-inc.com>\n 2007, CC Computer Consultants GmbH\nLicense: GPL-2\n\nFiles: include/linux/netfilter/ipset/ip_set.h\nCopyright: 2000-2002, Joakim Axelsson <gozem at linux.nu>\n Patrick Schaaf <bof at bof.de>\n Martin Josefsson <gandalf at wlug.westbo.se>\n 2003-2011, Jozsef Kadlecsik <kadlec at blackhole.kfki.hu>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_AUDIT.h\nCopyright: 2010-2011, Thomas Graf <tgraf at redhat.com>\n 2010-2011, Red Hat, Inc.\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_CHECKSUM.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\n 2010, Red Hat Inc\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_DSCP.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_IDLETIMER.h\nCopyright: 2004, 2010, Nokia Corporation\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_NFQUEUE.h\nCopyright: 2005, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_connmark.h\nCopyright: 2002, 2004, MARA Systems AB <http://www.marasystems.com> by Henrik Nordstrom <hno at marasystems.com>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_conntrack.h\nCopyright: 2001, Marc Boucher (marc at mbsi.ca)\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_dscp.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_ecn.h\nCopyright: 2002, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter/xt_osf.h\nCopyright: 2003+, Evgeniy Polyakov <johnpol at 2ka.mxt.ru>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4.h\nCopyright: 1998, Rusty Russell\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ip_queue.h\nCopyright: 2000, James Morris\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ECN.h\nCopyright: 2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_TTL.h\nCopyright: 2000, Harald Welte <laforge at netfilter.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ULOG.h\nCopyright: 2000-2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv4/ipt_ttl.h\nCopyright: 2000, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: include/linux/netfilter_ipv6.h\nCopyright: 1998, Rusty Russell\n 1999, David Jeffery\nLicense: GPL-2\n\nFiles: iptables/iptables-apply\nCopyright: 2006, Martin F. Krafft <madduck at madduck.net>\n 2010, GW <gw.2010 at tnode.com or http://gw.tnode.com/>\nLicense: Artistic\n\nFiles: iptables/iptables-save.c\nCopyright: 1999, Paul 'Rusty' Russell <rusty at rustcorp.com.au>\n 2000-2002, Harald Welte <laforge at gnumonks.org>\nLicense: GPL-2\n\nFiles: iptables/iptables-xml.c\nCopyright: 2006, Ufo Mechanic <azez at ufomechanic.net>\nLicense: GPL-2\n\nFiles: iptables/nft.c\nCopyright: 2012 Pablo Neira Ayuso <pablo at netfilter.org>\nLicense: GPL-2+\n\nFiles: iptables/nft-arp.c\nCopyright: 2013 Pablo Neira Ayuso <pablo at netfilter.org>\n 2013 Giuseppe Longo <giuseppelng at gmail.com>\nLicense: GPL-2+\n\nFiles: iptables/nft-bridge.c\nCopyright: 2014 Giuseppe Longo <giuseppelng at gmail.com>\nLicense: GPL-2+\n\nFiles: iptables/nft-ipv4.c iptables/nft-ipv6.c iptables/nft-shared.c\nCopyright: 2012-2013 Pablo Neira Ayuso <pablo at netfilter.org>\n 2013 Tomasz Bursztyka <tomasz.bursztyka at linux.intel.com>\nLicense: GPL-2+\n\nFiles: iptables/xtables-arp.c iptables/xtables-eb.c\nCopyright: 2002 Bart De Schuymer <bdschuym at pandora.be>\nLicense: GPL-2+\n\nFiles: libiptc/libip4tc.c\nCopyright: 1999, Paul ``Rusty'' Russell\nLicense: GPL-2\n\nFiles: libiptc/libip6tc.c\nCopyright: 1999, Paul ``Rusty'' Russell\nLicense: GPL-2\n\nFiles: libiptc/libiptc.c\nCopyright: 1999, Paul ``Rusty'' Russell\n 2000-2004, by the Netfilter Core Team <coreteam at netfilter.org>\n 2003, 2004, Harald Welte <laforge at netfilter.org>\n 2008, Jesper Dangaard Brouer <hawk at comx.dk>\nLicense: GPL-2\n\nFiles: libxtables/xtables.c\nCopyright: 2000-2006, by the netfilter coreteam <coreteam at netfilter.org>\nLicense: GPL-2\n\nFiles: libxtables/xtoptions.c\nCopyright: 2011, Jan Engelhardt\nLicense: GPL-2\n\nFiles: utils/nfsynproxy.c\nCopyright: 2013, Patrick McHardy <kaber at trash.net>\nLicense: GPL-2\n\nFiles: utils/pf.os\nCopyright: 2000-2003, Michal Zalewski <lcamtuf at coredump.cx>\n 2003, Mike Frantzen <frantzen at w4g.org>\nLicense: custom\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n\nLicense: GPL-2\n This program is free software; you can redistribute it\n and/or modify it under the terms of the GNU General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later\n version.\n .\n This program is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied\n warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n PURPOSE. See the GNU General Public License for more\n details.\n .\n You should have received a copy of the GNU General Public\n License along with this package; if not, write to the Free\n Software Foundation, Inc., 51 Franklin St, Fifth Floor,\n Boston, MA 02110-1301 USA\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: Artistic\n On Debian systems, the full text can be found in the file \"/usr/share/common-licenses/Artistic\"\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libxtables12 at 1.8.9-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4502,6 +12878,18 @@
"content": "6c19a5d18c8350744581fbd25d5d29e2b7101053e25aafa4e1ffcc2b505b2f1c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libxxhash0 at 0.8.1-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4518,6 +12906,26 @@
"content": "6315b5ac38b724a710fb96bf1042019398cb656718b1522279a5185ed39318fa"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "BSD-3-Clause OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Zstd\nSource: https://github.com/facebook/zstd\nFiles-Excluded: appveyor.yml\n build/VS2008\n build/VS2010\n build/VS_scripts\n programs/windres/*\n .travis.yml\n .buckversion\n .buckconfig\n .circleci/*\n .cirrus.yml\n\nFiles: *\nCopyright: Yann Collet\n\t Przemyslaw Skibinski\n\t Martin Liska\n\t SUSE\n\t Meta Platforms, Inc. and affiliates\nLicense: BSD-3-clause or GPL-2\nComment: Starting from 1.3.1 zstd's patent claim is removed\n see: https://github.com/facebook/zstd/pull/801\n\nFiles: zlibWrapper/examples/*.c\nCopyright: 1995-2006, 2011 Jean-loup Gailly\nLicense: zlib\n\nFiles: zlibWrapper/gz*.c\nCopyright: (C) 2004, 2005, 2010, 2011, 2012, 2013 Mark Adler\nLicense: zlib\n\nLicense: zlib\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgement in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nFiles: lib/dictBuilder/divsufsort.*\nCopyright: 2003-2008, Yuta Mori\nLicense: Expat\n\nFiles: examples/*\nCopyright: 2016-present, Yann Collet, Facebook, Inc.\nLicense: BSD-3-clause or GPL-2\n\nFiles: debian/*\nCopyright:\n 2015-2016 Kevin Murray <spam at kdmurray.id.au>\n 2022-2023 Peter Pentchev <roam at debian.org>\nLicense: Expat\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of cereal nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES OR SHANE GRANT BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libzstd1 at 1.5.4+dfsg2-5?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4534,6 +12942,31 @@
"content": "86b1f3504cf50fd4873be364c8a4e49a8c28e3442b31963a98a758135283db9d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Shadow\nSource: https://github.com/shadow-maint/shadow\nNote: atudel is licensed under BSD-4-Clause which is not DFSG compatible\nFiles-Excluded: contrib/atudel\n\nFiles: *\nCopyright: 1989-1994, Julianne Frances Haugh\n 2016-2022, Serge Hallyn <serge at hallyn.com>\nLicense: BSD-3-clause\n\nFiles: man/po/da.po\n man/po/de.po\n man/tr/man1/su.1\n po/da.po\n po/de.po\n po/es.po\n po/eu.po\n po/fi.po\n po/gl.po\n po/it.po\n po/kk.po\n po/nb.po\n po/nl.po\n po/nn.po\n po/pl.po\n po/pt_BR.po\n po/ru.po\n po/sq.po\n po/sv.po\n po/vi.po\nCopyright: 1999-2015, Free Software Foundation, Inc\nLicense: BSD-3-clause\n\nFiles: man/fi/man1/chfn.1\n man/id/man1/*\n man/ko/man1/chfn.1\n man/ko/man1/chsh.1\n man/tr/man1/chfn.1\n man/zh_TW/man1/chfn.1\n man/zh_TW/man1/chsh.1\nCopyright: 1994, salvatore valente <svalente at athena.mit.edu>\nLicense: GPL-1\n\nFiles: man/pt_BR/man8/*\n man/zh_TW/man8/usermod.8\nCopyright: 1991-1994, Julianne Frances Haugh\nLicense: BSD-3-clause\n\nFiles: man/hu/man1/gpasswd.1\n man/ja/man1/gpasswd.1\n man/pt_BR/man1/*\nCopyright: 1996, Rafal Maszkowski <rzm at pdi.net>\nLicense: BSD-3-clause\n\nFiles: man/id/man1/login.1\n man/ko/man1/login.1\n man/tr/man1/login.1\nCopyright: 1993, Rickard E. Faith <faith at cs.unc.edu>\nLicense: BSD-3-clause\n\nFiles: man/ja/man1/groups.1\n man/ja/man5/limits.5\n man/ja/man8/vipw.8\nCopyright: 2001, Maki KURODA\nLicense: BSD-3-clause\n\nFiles: man/pt_BR/man5/passwd.5\n man/tr/man5/passwd.5\nCopyright: 1993, Michael Haardt <michael at moria.de>\nLicense: GPL-2+\n\nFiles: man/ja/man1/chage.1\n man/ja/man5/suauth.5\nCopyright: 1997, Kazuyoshi Furutaka\nLicense: BSD-3-clause\n\nFiles: man/po/fr.po\n po/fr.po\nCopyright: 2011-2013, Debian French l10n team <debian-l10n-french at lists.debian.org>\nLicense: BSD-3-clause\n\nFiles: man/zh_TW/man5/*\nCopyright: 1993, Michael Haardt <michael at moria.de>\n 1993, Scorpio, www.linuxforum.net\nLicense: GPL-2+\n\nFiles: contrib/udbachk.tgz\nCopyright: 1999, Sami Kerola and Janne Riihij\u00e4rvi\nLicense: GPL-2+\n\nFiles: man/hu/man5/*\nCopyright: 1993, Michael Haardt <u31b3hs at pool.informatik.rwth-aachen.de>\nLicense: GPL-2+\n\nFiles: contrib/adduser2.sh\nCopyright: 1996, Petri Mattila, Prihateam Networks <petri at prihateam.fi>\nLicense: GPL-2+\n\nFiles: contrib/pwdauth.c\nCopyright: 1996, Marek Michalkiewicz\nLicense: BSD-3-clause\n\nFiles: lib/subordinateio.h\nCopyright: 2012, Eric W. Biederman\nLicense: BSD-3-clause\n\nFiles: libmisc/date_to_str.c\nCopyright: 2021, Alejandro Colomar <alx.manpages at gmail.com>\nLicense: BSD-3-clause\n\nFiles: man/hu/man1/su.1\nCopyright: 1999, Ragnar Hojland Espinosa <ragnar at macula.net>\nLicense: BSD-3-clause\n\nFiles: man/ja/man1/id.1\nCopyright: 2000, ISHIKAWA Keisuke\nLicense: BSD-3-clause\n\nFiles: man/ja/man8/pwconv.8\nCopyright: 2001, Yuichi SATO\nLicense: BSD-3-clause\n\nFiles: src/login_nopam.c\nCopyright: 1995, Wietse Venema\nLicense: BSD-3-clause\n\nFiles: src/su.c\nCopyright: 1989 - 1994, Julianne Frances Haugh\n 1996 - 2000, Marek Micha\u0142kiewicz\n 2000 - 2006, Tomasz K\u0142oczko\n 2007 - 2013, Nicolas Fran\u00e7ois\nLicense: GPL-2+\n\nFiles: src/vipw.c\nCopyright: 1997, Guy Maor <maor at ece.utexas.edu>\n 1999 - 2000, Marek Micha\u0142kiewicz\n 2002 - 2006, Tomasz K\u0142oczko\n 2007 - 2013, Nicolas Fran\u00e7ois\nLicense: GPL-2+\n\nFiles: libmisc/getdate.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\nLicense: public-domain\n Originally written by Steven M. Bellovin <smb at research.att.com> while\n at the University of North Carolina at Chapel Hill. Later tweaked by\n a couple of people on Usenet. Completely overhauled by Rich $alz\n <rsalz at bbn.com> and Jim Berets <jberets at bbn.com> in August, 1990;\n .\n This code is in the public domain and has no copyright.\n\nFiles: man/ko/man5/*\nCopyright: 2000, ASPLINUX <man at asp-linux.co.kr>\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: 1999-2001, Ben Collins <bcollins at debian.org>\n 2001-2004 Karl Ramm <kcr at debian.org>\n 2004-2014 Christian Perrier <bubulle at debian.org>\n 2006-2012 Nicolas Francois (Nekral) <nicolas.francois at centraliens.net>\n 2017-2022 Balint Reczey <balint at balintreczey.hu>\nLicense: BSD-3-clause\n\nFiles: debian/HOME_MODE.xml\nCopyright: 1991-1993, Chip Rosenthal\n 1991-1993, Julianne Frances Haugh\n 2007-2009, Nicolas Fran\u00e7ois\nLicense: BSD-3-clause\n\nFiles: debian/patches/401_cppw_src.dpatch\nCopyright: 1997, Guy Maor <maor at ece.utexas.edu>\n 1999, Stephen Frost <sfrost at snowman.net>\nLicense: GPL-2+\n\nFiles: debian/passwd.expire.cron\nCopyright: 1999, Ben Collins <bcollins at debian.org>\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: GPL-1\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 1\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n .\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/login at 1:4.13+dfsg1-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4550,6 +12983,13 @@
"content": "4e6acd31f55af85b2f12bd61a636c84e19fc1d0f419540b71bbe8aba6985aa32"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0+"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/logrotate at 3.21.0-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4566,6 +13006,59 @@
"content": "245f55e17d9ec050d9a1de80b35bc6b8f64f277b6f12183ff7769be5b3678eb8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache-2",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL OR MIT-US-export",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: e2fsprogs\nUpstream-Contact: Theodore Ts'o <tytso at mit.edu>\nSource: http://sourceforge.net/projects/e2fsprogs\nComment:\n This is the Debian GNU/Linux prepackaged version of the EXT2 file\n system utilities (e2fsck, mke2fs, etc.). The EXT2 utilities were\n written by Theodore Ts'o <tytso at mit.edu> and Remy Card <card at masi.ibp.fr>.\n\nFiles: *\nCopyright: 1993-2018 Theodore Ts'o <tytso at mit.edu>\nLicense: GPL-2\nComment: Some files are GPL-2+ licensed or do not carry any license version.\n They are distributable as GPL-2 and listed as such for simplification.\n\nFiles: debian/*\nCopyright: 2003-2007 Theodore Ts'o <tytso at mit.edu>\n 1997-2003 Yann Dirson <dirson at debian.org>\n 2001 Alcove <http://www.alcove.com/>\n 1997 Klee Dienes\n 1995-1996 Michael Nonweiler <mrn20 at cam.ac.uk>\nLicense: GPL-2\n\nFiles: lib/ext2fs/*\n lib/e2p/*\n lib/support/print_fs_flags.c\n misc/e2fuzz.c\nCopyright: 1995-1999, 2002, 2004-2006 Theodore Ts'o <tytso at mit.edu>\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 2001 Andreas Gruenbacher, <a.gruenbacher at computer.org>\n 2007 IBM Corporation\n 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\n 2014 Oracle\n 2012 Zheng Liu <wenqing.lz at taobao.com>\n 2012 Intel Corporation\n 2001 Daniel Phillips\n 2002 Theodore Ts'o.\n 2002 Andreas Dilger\n 2006 Cluster File Systems, Inc.\n 2006, 2007 by Andreas Dilger <adilger at clusterfs.com>\n 2003,2004 Cluster File Systems, Inc <info at clusterfs.com>\n 1995 Theodore Ts'o.\n 2003 VMware, Inc.\n 2015 Jan Kara\n 2018 Collabora Ltd.\n 1997 Theodore Ts'o\n 1997 Mark Habersack\n 2011 Whamcloud, Inc.\n 2004 Sam Hocevar <sam at hocevar.net>\n 2014 Google Inc.\n 1993, 1994, 1995 Theodore Ts'o.\n 1998 Andrey Shedel <andreys at ns.cr.cyco.com>\nLicense: LGPL-2\nComment: Some files in lib/ext2fs claim\n \"This file may be redistributed under the terms of the GNU Public License.\"\n and NOTICE clarifies them to be licensed under LGPL-2.\n\nFiles: lib/ext2fs/tdb*\nCopyright: 1999-2005 Andrew Tridgell\n 2000-2006 Jeremy Allison\n 2000 Paul `Rusty' Russell\nLicense: LGPL-2\n\nFiles: lib/ext2fs/tdbtool.c\nCopyright: 1999-2000 Andrew Tridgell\n 2000 Paul `Rusty' Russell\n 2000 Jeremy Allison\n 2001 Andrew Esh\nLicense: GPL-2\n\nFiles: lib/ext2fs/kernel-jbd.h\nCopyright: 1998-2000 Red Hat, Inc\nLicense: GPL-2\n\nFiles: lib/ext2fs/nls_utf8.c\n lib/ext2fs/utf8n.h\n util/mkutf8data.c\nCopyright: 2014 SGI\n 2018 Collabora Ltd.\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc16.*\nCopyright: 2005 Ben Gardner <bgardner at wabtec.com>\nLicense: GPL-2\n\nFiles: lib/ext2fs/crc32c*\nCopyright:\n August 26, 2011 Darrick J. Wong <djwong at us.ibm.com>\n Reuse Bob Pearson's slice-by-8 implementation for e2fsprogs.\n .\n July 20, 2011 Bob Pearson <rpearson at systemfabricworks.com>\n ...\n Oct 15, 2000 Matt Domsch <Matt_Domsch at dell.com>\n ...\n Oct 12, 2000 Matt Domsch <Matt_Domsch at dell.com>\nLicense: GPL-2\n\nFiles: lib/uuid/*\nCopyright: 1996-1999, 2007 Theodore Ts'o.\nLicense: BSD-3-Clause\n\nFiles: lib/uuid/*.3.in\nCopyright: 1999 Andreas Dilger <adilger at enel.ucalgary.ca>\nLicense: BSD-3-Clause\n\nFiles: contrib/fallocate.c\nCopyright: 2008 Red Hat, Inc. All rights reserved.\n 2003-2005 Silicon Graphics, Inc.\nLicense: GPL-2\n\nFiles: contrib/dconf\nCopyright: 1994 Ulrich Windl <Ulrich.Windl at rz.uni-regensburg.de>\nLicense: GPL-2\n\nFiles: CleanSpec.mk\n contrib/android/ext2simg.c\nCopyright: 2007, 2016 The Android Open Source Project\nLicense: Apache-2\n\nFiles: e2fsck/*\n debugfs/do_journal.c\n debugfs/journal.*\n debugfs/logdump.c\n debugfs/xattrs.c\n lib/support/plausible.c\n misc/fuse2fs.c\n misc/fsmap.h\nCopyright: 1993-2011 Theodore Ts'o\n 1999-2000 Red Hat Software\n 2000 Red Hat corp\n 2001 Red Hat, Inc.\n 2000 Stephen C. Tweedie\n 2000 Andreas Dilger\n 2014 Oracle\n 2019 Google LLC\nLicense: GPL-2\n\nFiles: e2fsck/mtrace.*\n include/nonunix/getopt.h\nCopyright: 1985-2015 Free Software Foundation, Inc.\nLicense: LGPL-2\n\nFiles: ext2ed/*\nCopyright: 1995 Gadi Oxman\nLicense: GPL-2\n\nFiles: include/mingw/unistd.h\nCopyright: 2004-2006 Kern Sibbald\n 2014 Adam Kropelin\nLicense: GPL-2\n\nFiles: lib/support/devname.*\nCopyright: 2010 Red Hat, Inc., Lukas Czerner <lczerner at redhat.com>\nLicense: GPL-2\n\nFiles: lib/blkid/*\n misc/blkid.c\nCopyright: 1999, 2001 by Andries Brouwer\n 1994-1997, 1999-2004 Theodore Ts'o <tytso at mit.edu>\n 2001 Andreas Dilger\nLicense: LGPL-2\n\nFiles: misc/blkid.8.in\n misc/uuidgen.1.in\nCopyright: 1999, 2000 Andreas Dilger <adilger at turbolinux.com>\nLicense: GPL-2\n\nFiles: misc/create_inode.c\nCopyright: 2014 Robert Yang <liezhi.yang at windriver.com>\nLicense: LGPL-2\n\nFiles: misc/e2freefrag.c\nCopyright: 2009 Sun Microsystems, Inc.\nLicense: GPL-2\n\nFiles: misc/e2undo.c\nCopyright: 2007 IBM Corporation\nLicense: GPL-2\n\nFiles: misc/e4defrag.c\nCopyright: Akira Fujita <a-fujita at rs.jp.nec.com>\n Takashi Sato <t-sato at yk.jp.nec.com>\nLicense: GPL-2\n\nFiles: misc/uuidgen.c\nCopyright: 1999 Andreas Dilger and Theodore Ts'o\nLicense: GPL-2\n\nFiles: misc/e2fuzz.sh\nCopyright: 2014 Oracle\nLicense: GPL-2\n\nFiles: misc/e4crypt.c\nCopyright: 2014 Google, Inc.\nLicense: GPL-2\n\nFiles: ext2ed/ext2.descriptors\n misc/badblocks.c\n misc/chattr.c\n misc/dumpe2fs.c\n misc/lsattr.c\n misc/mklost+found.c\n misc/tune2fs.c\nCopyright: 1995-1999 by Theodore Ts'o\n 1992-1994 Remy Card <card at masi.ibp.fr>\n Laboratoire MASI, Institut Blaise Pascal\n Universite Pierre et Marie Curie (Paris VI)\n 1999 by David Beattie\n Linus Torvalds <Linus.Torvalds at cs.helsinki.fi>\nLicense: GPL-2\n\nFiles: resize/*\nCopyright: 1997-2000 by Theodore Ts'o and PowerQuest, Inc.\nLicense: GPL-2\n\nFiles: scrub/*\nCopyright: 2018 Oracle\nLicense: GPL-2\n\nFiles: tests/fuzz/*.cc\nCopyright: 2020 Google LLC\nLicense: Apache-2\n\nFiles: lib/support/argv_parse.*\nCopyright: 1999 Theodore Ts'o.\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for\n any purpose with or without fee is hereby granted, provided that\n the above copyright notice and this permission notice appear in all\n copies. THE SOFTWARE IS PROVIDED \"AS IS\" AND THEODORE TS'O (THE\n AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,\n INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.\n IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER\n RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\n OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\n IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\nFiles: lib/support/profile.*\nCopyright: 2005, 2006 by Theodore Ts'o.\n 1985-2005 by the Massachusetts Institute of Technology.\n All rights reserved.\nLicense: GPL or MIT-US-export\n This file may be redistributed under the terms of the GNU Public\n License.\n .\n Export of this software from the United States of America may require\n a specific license from the United States Government. It is the\n responsibility of any person or organization contemplating export to\n obtain such a license before exporting.\n .\n WITHIN THAT CONSTRAINT, permission to use, copy, modify, and\n distribute this software and its documentation for any purpose and\n without fee is hereby granted, provided that the above copyright\n notice appear in all copies and that both that copyright notice and\n this permission notice appear in supporting documentation, and that\n the name of M.I.T. not be used in advertising or publicity pertaining\n to distribution of the software without specific, written prior\n permission. Furthermore if you modify this software you must label\n your software as modified software and not distribute it in such a\n fashion that it might be confused with the original MIT software.\n M.I.T. makes no representations about the suitability of this software\n for any purpose. It is provided \"as is\" without express or implied\n warranty.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License can be found in \"/usr/share/common-licenses/GPL\".\n\nFiles: lib/support/dict.*\nCopyright: 1997 Kaz Kylheku <kaz at ashi.footprints.net>\nLicense: Kazlib\n All rights are reserved by the author, with the following exceptions:\n Permission is granted to freely reproduce and distribute this software,\n possibly in exchange for a fee, provided that this copyright notice appears\n intact. Permission is also granted to adapt this software to produce\n derivative works, as long as the modified versions carry this copyright\n notice and additional notices stating that the work has been modified.\n This source code may be translated into executable form and incorporated\n into proprietary software; there is no requirement for such software to\n contain a copyright notice related to this source.\nComment: The work has been modified.\n\nFiles: doc/libext2fs.texinfo\nCopyright: 1997-2014 Theodore Ts'o\nLicense: Latex2e\n Permission is granted to process this file through TeX and print the\n results, provided the printed document carries copying permission\n notice identical to this one except for the removal of this paragraph\n (this paragraph not being relevant to the printed manual).\n .\n Permission is granted to copy and distribute modified versions of this\n manual under the conditions for verbatim copying, provided that the entire\n resulting derived work is distributed under the terms of a permission\n notice identical to this one.\n .\n Permission is granted to copy and distribute translations of this manual\n into another language, under the above conditions for modified versions,\n except that this permission notice may be stated in a translation approved\n by the author.\n\nFiles: doc/texinfo.tex\n lib/et/texinfo.tex\nCopyright: 1985-2006 Free Software Foundation, Inc.\nLicense: GPL-2+ with Texinfo exception\n This texinfo.tex file is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License as\n published by the Free Software Foundation; either version 2, or (at\n your option) any later version.\n .\n This texinfo.tex file is distributed in the hope that it will be\n useful, but WITHOUT ANY WARRANTY; without even the implied warranty\n of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this texinfo.tex file; see the file COPYING. If not, write\n to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA 02110-1301, USA.\n .\n As a special exception, when this file is read by TeX when processing\n a Texinfo source document, you may use the result without\n restriction. (This has been our intent since Texinfo was invented.)\n\nLicense: Apache-2\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n .\n http://www.apache.org/licenses/LICENSE-2.0\n .\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\nComment:\n On Debian systems, the complete text of the Apache License, Version 2.0\n can be found in \"/usr/share/common-licenses/Apache-2.0\".\n\nLicense: BSD-3-Clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF\n WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE\n USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH\n DAMAGE.\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms version 2 of the GNU General Public License\n as published by the Free Software Foundation.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Library General Public License as\n published by the Free Software Foundation; version 2 of the License.\n .\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Library General Public License for more details.\n .\n You should have received a copy of the GNU Library General Public License\n along with this library. If not, see <https://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU Library General\n Public License version 2 can be found in \"/usr/share/common-licenses/LGPL-2\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Kazlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Latex2e"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later WITH Texinfo exception"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/logsave at 1.47.0-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4582,6 +13075,23 @@
"content": "bcbc83f391854ea9d50ce2a4101aacf330de3b8b71d81a798faadba14a157f78"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "CC-BY-3.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/mawk at 1.3.4.20200120-3.1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4598,6 +13108,71 @@
"content": "f3fe9b80a2dcd2a7f464f3ada4d92b56999c32cd08e25da115cc3c3509e6a901"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/mount at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4614,6 +13189,21 @@
"content": "45a9b3960aa5ac18552459225ec26800abb73fc2edd11626046daf6d968ac968"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV+ OR GPL-3.0-or-later",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: nano\nSource: https://nano-editor.org/dist/\nComment:\n This package was debianized by Jordi Mallach <jordi at debian.org> on\n Wed, 8 Dec 1999 19:39:12 +0100.\n .\n GNU nano main authors are Chris Allegreta <chrisa at asty.org>,\n David Lawrence Ramsey <pooka109 at cox.net> and\n Benno Schulenberg <bensberg at justemail.net>.\n \nFiles: *\nCopyright: \u00a9 1999-2011, 2013-2016 Free Software Foundation, Inc.\n \u00a9 2014-2023 The contributors to GNU nano\nLicense: GPL-3+\n\nFiles: doc/*.1 doc/*.5 doc/*.texi\nCopyright: \u00a9 1999-2011, 2013-2023 Free Software Foundation, Inc.\nLicense: GFDL-NIV+ or GPL-3+\n\nFiles: debian/*\nCopyright: \u00a9 1999-2023 Jordi Mallach <jordi at debian.org>\nLicense: GPL-3+\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU General Public License\n can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: GFDL-NIV+\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.2\n or any later version published by the Free Software Foundation;\n with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.\n A copy of the license is included in the section entitled \"GNU\n Free Documentation License\".\n .\n On Debian systems, the complete text of the GNU Free Documentation License\n can be found in /usr/share/common-licenses/GFDL-1.2.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/nano at 7.2-1+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4630,6 +13220,26 @@
"content": "bfd1d89f833c09a28b062ee916495cf69649ca2bf529532476c7b69d75d24909"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "MIT/X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: ncurses\nUpstream-Contact: bug-ncurses at gnu.org\n Thomas Dickey <dickey at his.com>\nSource: https://invisible-mirror.net/archives/ncurses/\n\nFiles: *\nCopyright: 1998-2017,2018 Free Software Foundation, Inc.\n 1996-2020,2021 Thomas E. Dickey\n 2001 Pradeep Padala\nLicense: MIT/X11\n\nFiles: install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n\nFiles: progs/tset.c ncurses/tinfo/read_termcap.c\nCopyright: 1980,1991,1992,1993 The Regents of the University of California\nLicense: BSD-3-clause\n\nLicense: MIT/X11\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, distribute with modifications, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name(s) of the above copyright\n holders shall not be used in advertising or otherwise to promote the\n sale, use or other dealings in this Software without prior written\n authorization.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/ncurses-base at 6.4-4?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4646,6 +13256,26 @@
"content": "396d6e453aee6d71b7141f0bfb333a6c08a44c64f77632bdf52894ccd123db46"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "MIT/X11",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: ncurses\nUpstream-Contact: bug-ncurses at gnu.org\n Thomas Dickey <dickey at his.com>\nSource: https://invisible-mirror.net/archives/ncurses/\n\nFiles: *\nCopyright: 1998-2017,2018 Free Software Foundation, Inc.\n 1996-2020,2021 Thomas E. Dickey\n 2001 Pradeep Padala\nLicense: MIT/X11\n\nFiles: install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n\nFiles: progs/tset.c ncurses/tinfo/read_termcap.c\nCopyright: 1980,1991,1992,1993 The Regents of the University of California\nLicense: BSD-3-clause\n\nLicense: MIT/X11\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, distribute with modifications, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name(s) of the above copyright\n holders shall not be used in advertising or otherwise to promote the\n sale, use or other dealings in this Software without prior written\n authorization.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/ncurses-bin at 6.4-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4662,6 +13292,13 @@
"content": "29b23c48c0fe6f878e56c5ddc9f65d1c05d729360f3690a593a8c795031cd867"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/netbase at 6.4?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4678,6 +13315,23 @@
"content": "966ff20ce58c17163a771c02ddbca264291408f94c512bd85dd18da0ebdbe88c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC-BY-SA-4.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/nftables at 1.0.6-2+deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4694,6 +13348,31 @@
"content": "343b60a755ceb2c3687f9a5c9c9dc00eea0e44a7de49a537c36df17894f784b3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: Shadow\nSource: https://github.com/shadow-maint/shadow\nNote: atudel is licensed under BSD-4-Clause which is not DFSG compatible\nFiles-Excluded: contrib/atudel\n\nFiles: *\nCopyright: 1989-1994, Julianne Frances Haugh\n 2016-2022, Serge Hallyn <serge at hallyn.com>\nLicense: BSD-3-clause\n\nFiles: man/po/da.po\n man/po/de.po\n man/tr/man1/su.1\n po/da.po\n po/de.po\n po/es.po\n po/eu.po\n po/fi.po\n po/gl.po\n po/it.po\n po/kk.po\n po/nb.po\n po/nl.po\n po/nn.po\n po/pl.po\n po/pt_BR.po\n po/ru.po\n po/sq.po\n po/sv.po\n po/vi.po\nCopyright: 1999-2015, Free Software Foundation, Inc\nLicense: BSD-3-clause\n\nFiles: man/fi/man1/chfn.1\n man/id/man1/*\n man/ko/man1/chfn.1\n man/ko/man1/chsh.1\n man/tr/man1/chfn.1\n man/zh_TW/man1/chfn.1\n man/zh_TW/man1/chsh.1\nCopyright: 1994, salvatore valente <svalente at athena.mit.edu>\nLicense: GPL-1\n\nFiles: man/pt_BR/man8/*\n man/zh_TW/man8/usermod.8\nCopyright: 1991-1994, Julianne Frances Haugh\nLicense: BSD-3-clause\n\nFiles: man/hu/man1/gpasswd.1\n man/ja/man1/gpasswd.1\n man/pt_BR/man1/*\nCopyright: 1996, Rafal Maszkowski <rzm at pdi.net>\nLicense: BSD-3-clause\n\nFiles: man/id/man1/login.1\n man/ko/man1/login.1\n man/tr/man1/login.1\nCopyright: 1993, Rickard E. Faith <faith at cs.unc.edu>\nLicense: BSD-3-clause\n\nFiles: man/ja/man1/groups.1\n man/ja/man5/limits.5\n man/ja/man8/vipw.8\nCopyright: 2001, Maki KURODA\nLicense: BSD-3-clause\n\nFiles: man/pt_BR/man5/passwd.5\n man/tr/man5/passwd.5\nCopyright: 1993, Michael Haardt <michael at moria.de>\nLicense: GPL-2+\n\nFiles: man/ja/man1/chage.1\n man/ja/man5/suauth.5\nCopyright: 1997, Kazuyoshi Furutaka\nLicense: BSD-3-clause\n\nFiles: man/po/fr.po\n po/fr.po\nCopyright: 2011-2013, Debian French l10n team <debian-l10n-french at lists.debian.org>\nLicense: BSD-3-clause\n\nFiles: man/zh_TW/man5/*\nCopyright: 1993, Michael Haardt <michael at moria.de>\n 1993, Scorpio, www.linuxforum.net\nLicense: GPL-2+\n\nFiles: contrib/udbachk.tgz\nCopyright: 1999, Sami Kerola and Janne Riihij\u00e4rvi\nLicense: GPL-2+\n\nFiles: man/hu/man5/*\nCopyright: 1993, Michael Haardt <u31b3hs at pool.informatik.rwth-aachen.de>\nLicense: GPL-2+\n\nFiles: contrib/adduser2.sh\nCopyright: 1996, Petri Mattila, Prihateam Networks <petri at prihateam.fi>\nLicense: GPL-2+\n\nFiles: contrib/pwdauth.c\nCopyright: 1996, Marek Michalkiewicz\nLicense: BSD-3-clause\n\nFiles: lib/subordinateio.h\nCopyright: 2012, Eric W. Biederman\nLicense: BSD-3-clause\n\nFiles: libmisc/date_to_str.c\nCopyright: 2021, Alejandro Colomar <alx.manpages at gmail.com>\nLicense: BSD-3-clause\n\nFiles: man/hu/man1/su.1\nCopyright: 1999, Ragnar Hojland Espinosa <ragnar at macula.net>\nLicense: BSD-3-clause\n\nFiles: man/ja/man1/id.1\nCopyright: 2000, ISHIKAWA Keisuke\nLicense: BSD-3-clause\n\nFiles: man/ja/man8/pwconv.8\nCopyright: 2001, Yuichi SATO\nLicense: BSD-3-clause\n\nFiles: src/login_nopam.c\nCopyright: 1995, Wietse Venema\nLicense: BSD-3-clause\n\nFiles: src/su.c\nCopyright: 1989 - 1994, Julianne Frances Haugh\n 1996 - 2000, Marek Micha\u0142kiewicz\n 2000 - 2006, Tomasz K\u0142oczko\n 2007 - 2013, Nicolas Fran\u00e7ois\nLicense: GPL-2+\n\nFiles: src/vipw.c\nCopyright: 1997, Guy Maor <maor at ece.utexas.edu>\n 1999 - 2000, Marek Micha\u0142kiewicz\n 2002 - 2006, Tomasz K\u0142oczko\n 2007 - 2013, Nicolas Fran\u00e7ois\nLicense: GPL-2+\n\nFiles: libmisc/getdate.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\nLicense: public-domain\n Originally written by Steven M. Bellovin <smb at research.att.com> while\n at the University of North Carolina at Chapel Hill. Later tweaked by\n a couple of people on Usenet. Completely overhauled by Rich $alz\n <rsalz at bbn.com> and Jim Berets <jberets at bbn.com> in August, 1990;\n .\n This code is in the public domain and has no copyright.\n\nFiles: man/ko/man5/*\nCopyright: 2000, ASPLINUX <man at asp-linux.co.kr>\nLicense: GPL-2+\n\nFiles: debian/*\nCopyright: 1999-2001, Ben Collins <bcollins at debian.org>\n 2001-2004 Karl Ramm <kcr at debian.org>\n 2004-2014 Christian Perrier <bubulle at debian.org>\n 2006-2012 Nicolas Francois (Nekral) <nicolas.francois at centraliens.net>\n 2017-2022 Balint Reczey <balint at balintreczey.hu>\nLicense: BSD-3-clause\n\nFiles: debian/HOME_MODE.xml\nCopyright: 1991-1993, Chip Rosenthal\n 1991-1993, Julianne Frances Haugh\n 2007-2009, Nicolas Fran\u00e7ois\nLicense: BSD-3-clause\n\nFiles: debian/patches/401_cppw_src.dpatch\nCopyright: 1997, Guy Maor <maor at ece.utexas.edu>\n 1999, Stephen Frost <sfrost at snowman.net>\nLicense: GPL-2+\n\nFiles: debian/passwd.expire.cron\nCopyright: 1999, Ben Collins <bcollins at debian.org>\nLicense: BSD-3-clause\n\nLicense: BSD-3-clause\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: GPL-1\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 1\n .\n On Debian systems, the complete text of version 1 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; version 2 dated June, 1991, or (at\n your option) any later version.\n .\n On Debian systems, the complete text of version 2 of the GNU General\n Public License can be found in '/usr/share/common-licenses/GPL-2'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/passwd at 1:4.13+dfsg1-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4710,6 +13389,185 @@
"content": "b4327c2d8e2ca92402205ac6b5845b3110fa2a1d50925c0e61c39624583a8baf"
}
],
+ "licenses": [
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "name": "REGCOMP, AND GPL-1.0+ OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3+-WITH-BISON-EXCEPTION",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Unicode",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic, AND Unicode",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BZIP",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ },
+ {
+ "license": {
+ "id": "Artistic-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-or-later OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR GPL-1.0+ OR Artistic-1.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "RRA-KEEP-THIS-NOTICE",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-3-clause-with-weird-numbering",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "TEXT-TABS",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic, AND BSD-4-clause-POWERDOG",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic, AND BSD-3-clause-GENERIC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "SDBM-PUBLIC-DOMAIN",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "DONT-CHANGE-THE-GPL",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic-1.0 OR Artistic-dist",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-dist",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Artistic-1.0 OR GPL-1.0+ OR Artistic-dist",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic, AND MIT",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nFiles-Excluded-regen-configure: bin/*\nUpstream-Name: perl\nSource: http://www.perl.com/CPAN/src/5.0/\nComment:\n This package was initially debianized by Brendan O'Dea <bod at debian.org>\n on Thu, 17 Aug 2000 16:10:54 +1000. The packaging has since been modified\n by various others, including Dominic Hargreaves <dom at earth.li> and Niko\n Tyni <ntyni at debian.org>.\n .\n Upstream Authors:\n .\n Larry Wall et. al. (see /usr/share/doc/perl/AUTHORS).\n .\n Last checked against: Perl 5.36.0\n\nFiles: *\nCopyright:\n Perl is Copyright (C) 1987-2022 by Larry Wall and others. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n ----------------------------------------\n The directories ext/, dist/, and cpan/ contain separate distributions\n that have been bundled with the Perl core. The copyright and license\n status of these have been detailed separately below.\n .\n It is assumed that all the other files are part of Perl and share the\n above copyright and license information unless explicitly specified\n differently. Only the exceptions have been detailed below.\n .\n As a small portion of the files are indeed licensed differently from\n the above, all the other licenses have been collected and/or duplicated\n at the end of this file to facilitate review.\n\nFiles: builtin.c\nCopyright:\n Copyright (C) 2021 by Paul Evans and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perlio.c\nCopyright:\n Copyright (c) 1996-2006, Nick Ing-Simmons\n Copyright (c) 2006, 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: malloc.c\nCopyright:\n Modifications Copyright Ilya Zakharevich 1996-99.\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: mro_core.c\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2007, 2008 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles: perl.c\nCopyright:\n Copyright (C) 1987-2022 by Larry Wall and others\n OS/2 port Copyright (c) 1990, 1991, Raymond Chen, Kai Uwe Rommel\n Version 5 port Copyright (c) 1994-2002, Andreas Kaiser, Ilya Zakharevich\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n ----------------------------------------\n These copyright notices are embedded in the code, and possibly apply\n to other files as well.\n\nFiles: time64.c\nCopyright:\n Copyright (c) 2007-2008 Michael G Schwern\n .\n This software originally derived from Paul Sheer's pivotal_gmtime_r.c.\nLicense: Expat\n\nFiles:\n regcomp.c\n regexec.c\nCopyright:\n Copyright (c) 1986 by University of Toronto.\n Written by Henry Spencer. Not derived from licensed software.\n .\n Alterations to Henry's code are...\n Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\n .\n NOTE: this is derived from Henry Spencer's regexp code, and should not\n confused with the original package (see point 3 below). Thanks, Henry!\nLicense: REGCOMP, and GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The \"alterations to Henry's code\" have the following license information:\n .\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: perly.h\nCopyright:\n Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation, Inc.\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n\nFiles: mkppport\nCopyright:\n Copyright 2006 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: ebcdic_tables.h\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\n\nFiles:\n inline.h\n perl.h\nCopyright:\n Copyright (C) 1993-2012 by Larry Wall and others\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic\nComment:\n These files contains tables and code adapted from\n https://bjoern.hoehrmann.de/utf-8/decoder/dfa/, which requires this\n copyright notice:\n .\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\n\nFiles: lib/unicore/*.txt\nCopyright:\n \u00a9 1991-2016 Unicode\u00ae, Inc.\nLicense: Unicode\nComment:\n The license is given as\n .\n For terms of use, see http://www.unicode.org/terms_of_use.html\n .\n See the end of this file for the full text of this license as downloaded\n from the above URL on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: lib/deprecate.pm\nCopyright:\n Copyright (C) 2009, 2011\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.10.0 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: lib/B/Deparse.pm\nCopyright:\n Copyright (c) 1998-2000, 2002, 2003, 2004, 2005, 2006 Stephen McCamant.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/FindBin/lib/FindBin.pm\nCopyright:\n Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: t/op/split_unicode.t\nCopyright:\n Copyright (c) 1991-2006 Unicode, Inc.\nLicense: GPL-1+ or Artistic, and Unicode\nComment:\n ----------------------------------------\n The test data was extracted from the Unicode Character Database.\n .\n It is assumed that the test code is licensed under the same terms\n as Perl.\n\nFiles: regen/ebcdic.pl\nCopyright:\n Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: Expat\nComment:\n * Some of the tables are adapted from\n * https://bjoern.hoehrmann.de/utf-8/decoder/dfa/\n\nFiles: regen/reentr.pl\nCopyright: Copyright (c) 2002,2003 Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n Porting/checkansi.pl\n Porting/valgrindpp.pl\nCopyright:\n Copyright 2003, 2007 by Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: Porting/config_h.pl\nCopyright:\n Copyright (C) 2005-2020 by H.Merijn Brand (m)'20 [23-08-2020]\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: Porting/git-deltatool\nCopyright:\n This software is copyright (c) 2010 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under the same\n terms as the Perl 5 programming language system itself.\n\nFiles:\n vms/vms.c\n vms/vmsish.h\nCopyright:\n Copyright (C) 1993-2015 by Charles Bailey and others.\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: win32/fcrypt.c\nCopyright:\n Copyright (C) 1993 Eric Young - see README for more details\nLicense: GPL-1+ or Artistic\nComment:\n This file is a part of Perl itself, licensed as above.\n\nFiles:\n dist/autouse/*\n dist/base/*\n dist/constant/*\n dist/Devel-SelfStubber/*\n dist/Dumpvalue/*\n dist/Env/*\n cpan/ExtUtils-Manifest/*\n dist/I18N-Collate/*\n dist/Safe/*\n ext/Fcntl/*\n ext/FileCache/*\n ext/GDBM_File/*\n ext/IPC-Open3/*\n ext/NDBM_File/*\n ext/ODBM_File/*\n ext/Opcode/*\n ext/PerlIO-encoding/*\n ext/PerlIO-scalar/*\n ext/PerlIO-via/*\n ext/POSIX/*\n ext/re/*\n cpan/Socket/*\n ext/Sys-Hostname/*\n ext/Tie-Hash-NamedCapture/*\n ext/Tie-Memoize/*\n ext/VMS-DCLsym/*\n ext/VMS-Stdio/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no copyright or license information in these distributions.\n It is assumed that they are licensed under the same terms as Perl itself.\n\nFiles: cpan/Archive-Tar/*\nCopyright: 2002 - 2009 Jos Boumans <kane at cpan.org>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/AutoLoader/*\n dist/SelfLoader/*\nCopyright: This package has the same copyright and license as the perl core:\n Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,\n 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012\n by Larry Wall and others\n .\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: cpan/autodie/*\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the\n same terms as Perl itself.\n\nFiles:\n cpan/autodie/lib/autodie/exception/system.pm\n cpan/autodie/lib/autodie/exception.pm\nCopyright: 2008-2009, Paul Fenwick <pjf at perltraining.com.au>\nLicense: GPL-1+ or Artistic\nComment:\n This is free software. You may modify and/or redistribute this\n code under the same terms as Perl 5.10 itself, or, at your option,\n any later version of Perl 5.\n\nFiles:\n cpan/autodie/lib/autodie/Scope/GuardStack.pm\n cpan/autodie/lib/autodie/Util.pm\nCopyright: Copyright 2013-2014, Niels Thykier <niels at thykier.net>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. You may distribute it under the\n same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/*\nCopyright: Copyright (c) 2005-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Bzip2/bzip2-src/*\nCopyright: Copyright(C) 1996-2019 Julian Seward. All rights reserved\nComment:\n ----------------------------------------\n cpan/Compress-Raw-Bzip2/bzip2-src/README states:\n Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c\n have been modified to allow them to build with a C++ compiler.\n The file bzip2-src/bzip2-cpp.patch contains the patch\n that was used to modify the original source.\n but the patch has apparently been filtered out when including the software\n into the Perl core distribution.\nLicense: BZIP\n\nFiles: cpan/Compress-Raw-Zlib/*\nCopyright: Copyright (c) 2005-2021 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Compress-Raw-Zlib/zlib-src/*\nCopyright:\n Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler\nLicense: ZLIB\n\nFiles: cpan/Config-Perl-V/*\nCopyright:\n Copyright (C) 2009-2020 H.Merijn Brand\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/CPAN/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n cpan/CPAN/lib/App/Cpan.pm\n cpan/CPAN/scripts/cpan\nCopyright: (c) 2001-2021, brian d foy, All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute this under the same terms as Perl itself.\n\nFiles: cpan/CPAN-Meta/*\nCopyright:\n This software is copyright (c) 2010 by David Golden, Ricardo Signes,\n Adam Kennedy and Contributors.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_0.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_1.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_2.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_3.pod\n cpan/CPAN-Meta/lib/CPAN/Meta/History/Meta_1_4.pod\nCopyright: Ken Williams\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-Requirements/*\nCopyright:\n This software is copyright (c) 2010 by David Golden and Ricardo Signes.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/CPAN-Meta-YAML/*\nCopyright:\n This software is copyright (c) 2010 by Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/DB_File/*\nCopyright: Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Devel-PPPort/*\nCopyright:\n Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.\n Copyright (C) 2018-2020, The perl5 porters\n Version 2.x, Copyright (C) 2001, Paul Marquess.\n Version 1.x, Copyright (C) 1999, Kenneth Albanowski.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles:\n dist/Devel-PPPort/parts/inc/mess\n dist/Devel-PPPort/parts/inc/01_test\nCopyright:\n Copyright (C) 2017, 2019 Pali <pali at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest/*\nCopyright:\n Copyright 1998-2006 Gisle Aas.\n Copyright 1995,1996 Neil Winton.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-MD5/*\nCopyright:\n Copyright 1998-2003 Gisle Aas.\n Copyright 1995-1996 Neil Winton.\n Copyright 1990-1992 RSA Data Security, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Digest-SHA/*\nCopyright:\n Copyright (C) 2003-2018 Mark Shelor, All Rights Reserved\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/*\nCopyright: Copyright 2002-2014 Dan Kogai <dankogai at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Encode/bin/encguess\nCopyright: 2015 Michael LaGrasta and Dan Kogai\nLicense: Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the terms of the the Artistic License (2.0).\n\nFiles: dist/encoding-warnings/*\nCopyright:\n Copyright 2004, 2005, 2006, 2007 by Audrey Tang <cpan at audreyt.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Exporter/lib/Exporter.pm\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software. You can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: dist/Tie-File/*\nCopyright:\n Tie::File version 0.97 is copyright (C) 2003 Mark Jason Dominus.\nLicense: GPL-2+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n These terms are your choice of any of (1) the Perl Artistic Licence,\n or (2) version 2 of the GNU General Public License as published by the\n Free Software Foundation, or (3) any later version of the GNU General\n Public License.\n\n\nFiles: cpan/experimental/*\nCopyright:\n This software is copyright (c) 2013 by Leon Timmermans.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/ExtUtils-Constant/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright or license notices in this distribution. It\n is assumed that the copyright and license of Perl itself applies here\n as well.\n .\n This is supported by the README of the separate CPAN distribution at\n <https://metacpan.org/release/ExtUtils-Constant>, which states:\n .\n You may distribute this work under the terms of either the GNU General\n Public License or the Artistic License, as specified in perl's README\n file.\n .\n Copyright \u00a9 2001, 2002, 2005 Nicholas Clark\n\nFiles: cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/Locale.pm\nCopyright: 2010 Gisle Aas <gisle at aas.no>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm\nCopyright: 1996- by Andreas Koenig\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/ExtUtils-PL2Bat/lib/ExtUtils/PL2Bat.pm\nCopyright: (c) 2015 by Leon Timmermans\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/File-Fetch/*\n cpan/IPC-Cmd/*\n cpan/Module-Load/*\n cpan/Module-Load-Conditional/*\n cpan/Module-Loaded/*\n cpan/Params-Check/*\nCopyright:\n There are no copyright notices in these distributions.\n Their author is Jos Boumans <kane at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/File-Path/*\nCopyright:\n This module is copyright (C) Charles Bailey, Tim Bunce, David Landgren,\n James Keenan, and Richard Elberger 1995-2020. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/File-Temp/*\nCopyright:\n This software is copyright (c) 2020 by Tim Jenness and the UK Particle\n Physics and Astronomy Research Council.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Filter-Util-Call/*\nCopyright:\n Copyright (c) 1995-2011 Paul Marquess. All rights reserved.\n Copyright (c) 2011-2014 Reini Urban. All rights reserved.\n Copyright (c) 2014-2017 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Getopt-Long/*\nCopyright:\n Module Getopt::Long is Copyright 1990,2015 by Johan Vromans.\nLicense: GPL-2+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the terms of the Perl Artistic License or the\n GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nFiles: cpan/HTTP-Tiny/*\nCopyright:\n This software is copyright (c) 2021 by Christian Hansen.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/IO-Compress/*\nCopyright:\n Copyright (c) 1995-2022 Paul Marquess. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IO-Socket-IP/*\nCopyright:\n (C) Paul Evans, 2010-2020 -- leonerd at leonerd.org.uk\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public License\n or the Artistic License (the same terms as Perl itself)\n\nFiles: cpan/IO-Zlib/*\nCopyright:\n Copyright (c) 1998-2004 Tom Hughes <tom at compton.nu>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute\n it and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/IPC-SysV/*\nCopyright:\n Version 2.x, Copyright (C) 2007-2010, Marcus Holland-Moritz.\n Version 1.x, Copyright (c) 1997, Graham Barr.\n Version 1.x, Copyright (c) 1999, Graham Barr.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/JSON-PP/*\nCopyright:\n Copyright 2007-2016 by Makamaka Hannyaharamitu\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/*\nCopyright:\n (C) 1995-2010 Graham Barr. All rights reserved.\n (C) 2013-2017, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/libnet/Makefile.PL\nCopyright:\n Copyright (C) 2014-2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This script is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself, i.e. under the terms of either the GNU\n General Public License or the Artistic License, as specified in the LICENCE\n file.\n\nFiles: cpan/Scalar-List-Utils/*\nCopyright:\n Copyright (c) 1997-2009 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Scalar/Util.pm\nCopyright:\n Copyright (c) 1997-2007 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright (c) 1999 Tuomas J. Lukka <lukka at iki.fi>. All rights reserved.\n Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.\n Copyright (C) 2014 cPanel Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Scalar-List-Utils/lib/Sub/Util.pm\nCopyright: (c) 2014 Paul Evans <leonerd at leonerd.org.uk>. All rights reserved\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Locale-Maketext-Simple/*\nCopyright:\n Copyright 2003, 2004, 2005, 2006 by Audrey Tang <cpan at audreyt.org>\nLicense: Expat or GPL-1+ or Artistic\nComment:\n This software is released under the MIT license cited below. Additionally,\n when this software is distributed with Perl Kit, Version 5, you may also\n redistribute it and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Locale-Maketext-Simple/t/po_with_i_default/i_default.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/fr.po\n cpan/Locale-Maketext-Simple/t/po_with_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/en.po\n cpan/Locale-Maketext-Simple/t/po_without_i_default/fr.po\nCopyright:\n Copyright (C) All Perl Hackers everywhere\n Ton Voon <ton.voon at opsera.com>, 2009.\nLicense: Expat or GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that these translations are licensed under the same terms as\n the rest of the Locale-Maketext-Simple distribution.\n\nFiles: cpan/Math-Complex/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Memoize/*\nCopyright:\n Copyright 1998, 1999, 2000, 2001, 2012 M-J. Dominus.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n You may copy and distribute this program under the same terms as\n Perl itself. If in doubt, write to mjd-perl-memoize+ at plover.com for\n a license.\n\nFiles: cpan/MIME-Base64/*\nCopyright:\n Copyright 1995-2004,2010 Gisle Aas <gisle at ActiveState.com>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/MIME-Base64/Base64.xs\nCopyright:\n Copyright 1997-2004 Gisle Aas\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The tables and some of the code that used to be here was borrowed from\n metamail, which comes with this message:\n .\n Copyright (c) 1991 Bell Communications Research, Inc. (Bellcore)\n .\n Permission to use, copy, modify, and distribute this material\n for any purpose and without fee is hereby granted, provided\n that the above copyright notice and this permission notice\n appear in all copies, and that the name of Bellcore not be\n used in advertising or publicity pertaining to this\n material without the specific, prior written permission\n of an authorized representative of Bellcore. BELLCORE\n MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY\n OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED \"AS IS\",\n WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.\n\nFiles: cpan/Module-Metadata/*\nCopyright:\n Copyright (c) 2001-2011 Ken Williams. All rights reserved.\n Copyright (c) 2010-2011 Matt Trout and David Golden. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/NEXT/*\nCopyright:\n Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: cpan/parent/*\nCopyright:\n Copyright (c) 2007-2017 Max Maischein <corion at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is released under the same terms as Perl itself.\n\nFiles: cpan/PerlIO-via-QuotedPrint/*\nCopyright:\n Copyright (c) 2002-2004,2012 Elizabeth Mattijsen. All rights reserved.\n Copyright (C) 2015, 2020 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Perl-OSType/*\nCopyright:\n This software is copyright (c) 2016 by David Golden.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Pod-Checker/*\nCopyright:\n Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This file is part of \"PodParser\". PodParser is free software;\n you can redistribute it and/or modify it under the same terms\n as Perl itself.\n\nFiles: cpan/Pod-Escapes/*\nCopyright:\n Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/podlators/*\nCopyright:\n Copyright 1999-2001, 2008, 2010, 2012, 2014-2016, 2018-2019 Russ Allbery <rra at cpan.org>\n Substantial contributions by Sean Burke <sburke at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/podlators/lib/Pod/Text/Overstrike.pm\nCopyright:\n Copyright 2000 by Joe Smith <Joe.Smith at inwap.com>.\n Copyright 1999, 2001, 2004, 2006, 2008, 2009, 2018-2019 Russ Allbery <rra at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/podlators/t/data/snippets/README\n cpan/podlators/t/data/basic.cap\n cpan/podlators/t/data/basic.clr\n cpan/podlators/t/data/basic.man\n cpan/podlators/t/data/basic.ovr\n cpan/podlators/t/data/basic.pod\n cpan/podlators/t/data/basic.txt\nCopyright:\n Copyright 2001-2018 Russ Allbery <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles:\n cpan/podlators/t/docs/pod-spelling.t\n cpan/podlators/t/docs/pod.t\n cpan/podlators/t/docs/synopsis.t\n cpan/podlators/t/lib/Test/RRA.pm\n cpan/podlators/t/lib/Test/RRA/Config.pm\n cpan/podlators/t/style/minimum-version.t\n cpan/podlators/t/style/module-version.t\n cpan/podlators/t/style/strict.t\nCopyright:\n Copyright 2012-2014 The Board of Trustees of the Leland Stanford Junior University\n Copyright 2014-2016, 2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles:\n cpan/podlators/t/lib/Test/RRA/ModuleVersion.pm\n cpan/podlators/t/docs/spdx-license.t\n cpan/podlators/t/style/obsolete-strings.t\nCopyright: Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\nLicense: Expat\n\nFiles: cpan/podlators/t/man/no-encode.t\nCopyright:\n Copyright 2016 Niko Tyni <ntyni at iki.fi>\n Copyright 2016, 2018-2019 Russ Allbery <rra at cpan.org>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/*\nCopyright:\n Copyright (c) 2002-2004 Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm\nCopyright:\n Copyright (c) 2003-2005 Allison Randal.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles:\n cpan/Pod-Simple/t/perlfaq.pod\n cpan/Pod-Simple/t/perlfaqo.txt\nCopyright:\n Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n This document is part of the perlfaq distribution. A newer version\n of it is also included in pod/perlfaq3.pod.\n .\n The license notice in the document is:\n .\n When included as an integrated part of the Standard Distribution\n of Perl or of its documentation (printed or otherwise), this works is\n covered under Perl's Artistic License. For separate distributions of\n all or part of this FAQ outside of that, see L<perlfaq>.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n .\n The corresponding license in pod/perlfaq.pod is:\n .\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles: cpan/Pod-Usage/*\nCopyright:\n Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.\n Copyright (c) 2001-2016 by Marek Rouchal.\nLicense: GPL-1+ or Artistic\nComment:\n Pod::Usage (the distribution) is licensed under the same terms as Perl\n\nFiles: cpan/Pod-Usage/t/inc/Pod/PlainText.pm\nCopyright:\n Copyright 1999-2000 by Russ Allbery <rra at stanford.edu>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/*\nCopyright:\n Copyright (C) 1990-2012 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Sys-Syslog/fallback/syslog.h\nCopyright:\n Copyright (c) 1982, 1986, 1988, 1993\n The Regents of the University of California. All rights reserved.\nLicense: BSD-3-clause-with-weird-numbering\n\nFiles: cpan/Term-ANSIColor/*\nCopyright:\n Copyright 1996 Zenin\n Copyright 1996-1998, 2000-2002, 2005-2006, 2008-2018, 2020 Russ Allbery <rra at cpan.org>\n Copyright 2012 Kurt Starsinic <kstarsinic at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA.pm\nCopyright:\n Copyright 2016, 2018-2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013, 2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles:\n cpan/Term-ANSIColor/t/lib/Test/RRA/Config.pm\nCopyright:\n Copyright 2015, 2016, 2019 Russ Allbery <eagle at eyrie.org>\n Copyright 2013-2014 The Board of Trustees of the Leland Stanford Junior University\nLicense: Expat\n\nFiles: cpan/Term-Cap/*\nCopyright: 1995-2015 (c) perl5 porters.\nLicense: GPL-1+ or Artistic\nComment:\n This software is free software and can be modified and distributed under\n the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/*\nCopyright:\n Copyright (c) 2007-2011, Andy Armstrong <andy at hexten.net>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser.pm\nCopyright:\n Copyright 2006-2008 Curtis \"Ovid\" Poe, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm\nCopyright:\n Copyright 2007-2011 Andy Armstrong.\n Portions copyright 2006-2008 Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/*\nCopyright:\n Copyright 2001-2008 by Michael G Schwern <schwern at pobox.com>.\n Copyright 2019-2020 Chad Granum <exodist at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder.pm\nCopyright:\n Copyright 2002-2008 by chromatic <chromatic at wgz.org> and\n Michael G Schwern E<schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/Tester.pm\nCopyright:\n Copyright Mark Fowler <mark at twoshortplanks.com> 2002, 2004.\n .\n Some code taken from Test::More and Test::Catch, written by by\n Michael G Schwern <schwern at pobox.com>. Hence, those parts\n Copyright Michael G Schwern 2001. Used and distributed with\n permission.\n .\n This module is copyright 2005 Fergal Daly <fergal at esatclear.ie>, some parts\n are based on other people's work.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tutorial.pod\nCopyright:\n Copyright 2001 by Michael G Schwern <schwern at pobox.com>.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files\n are hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun\n or for profit as you see fit. A simple comment in the code giving\n credit would be courteous but is not required.\n\nFiles: cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm\nCopyright:\n Copyright (c) 1996 by Eryq. All rights reserved.\n Copyright (c) 1999,2001 by ZeeGee Software Inc. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles: cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm\nCopyright: Copyright 2003 by Fergal Daly <fergal at esatclear.ie>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it\n and/or modify it under the same terms as Perl itself.\n\nFiles:\n cpan/Test-Simple/lib/Test/use/ok.pm\n cpan/Test-Simple/lib/ok.pm\nCopyright: none\n To the extent possible under law, \u5510\u9cf3 has waived all copyright and related\n or neighboring rights to L<Test-use-ok>\nLicense: CC0-1.0\nComment:\n ----------------------------------------\n The file links to http://creativecommons.org/publicdomain/zero/1.0/\n and the full license text as retrieved from there can be found at the\n end of this file.\n\nFiles: cpan/Text-Balanced/*\nCopyright:\n Copyright 1997 - 2001 Damian Conway. All Rights Reserved.\n Copyright (C) 2009 Adam Kennedy.\n Copyright (C) 2015 Steve Hay. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it under the\n same terms as Perl itself, i.e. under the terms of either the GNU General Public\n License or the Artistic License, as specified in the F<LICENCE> file.\n\nFiles: cpan/Text-ParseWords/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices this distribution.\n .\n This library is free software; you may redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: cpan/Text-Tabs/*\nCopyright:\n Copyright (C) 1996-2009 David Muir Sharnoff.\n Copyright (C) 2005 Aristotle Pagaltzis\n Copyright (C) 2012-2013 Google, Inc.\nLicense: TEXT-TABS\n\nFiles: cpan/Tie-RefHash/*\nCopyright:\n This software is copyright (c) 2006 by \u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch at woobling.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles:\n cpan/Win32API-File/*\n cpan/ExtUtils-Install/*\n cpan/Math-BigInt/*\n cpan/Math-BigInt-FastCalc/*\n cpan/Math-BigRat/*\n dist/Thread-Queue/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n ----------------------------------------\n These distributions include no copyright notices but have\n the same explicit licensing information.\n\nFiles:\n cpan/bignum/*\nCopyright:\n (C) by Tels L<http://bloodgate.com/> in early 2002 - 2007.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: cpan/Time-Local/*\nCopyright:\n Copyright (c) 1997 - 2020 by Graham Barr & Dave Rolsky.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: cpan/Time-Piece/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software, you may distribute it under the same\n terms as Perl.\n\nFiles: cpan/Time-Piece/Piece.xs\nCopyright:\n strptime copied from freebsd with the following copyright:\n Copyright (c) 1994 Powerdog Industries. All rights reserved.\nLicense: GPL-1+ or Artistic, and BSD-4-clause-POWERDOG\nComment:\n ----------------------------------------\n The strptime function is licensed under the BSD-like license included\n below. It is assumed that the other parts are licensed under the same\n terms as the rest of the distribution.\n\nFiles: cpan/Unicode-Collate/*\nCopyright:\n This module is Copyright(C) 2001-2021, SADAHIRO Tomoyuki. Japan. All\n rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Unicode-Collate/Collate/allkeys.txt\nCopyright:\n Copyright (c) 2020 Unicode, Inc.\nLicense: Unicode\nComment:\n For terms of use, see http://www.unicode.org/terms_of_use.html\n ----------------------------------------\n See below for the full text of this license as downloaded from the above URL\n on Tue, 26 Apr 2011 14:41:24 +0300.\n\nFiles: dist/Unicode-Normalize/*\nCopyright:\n Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: cpan/Win32/*\nCopyright: (c) 1995 Microsoft Corporation. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There are no copyright notices or license information in this distribution,\n but the README file of the separate CPAN distribution at\n <https://fastapi.metacpan.org/source/JDB/Win32-0.52/README> states:\n .\n This module is free software; you may redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n The \"Perl for Win32\" source code was licensed under the same terms\n as Perl itself and contained this copyright notice:\n .\n (c) 1995 Microsoft Corporation. All rights reserved.\n Developed by ActiveWare Internet Corp.\n\nFiles: dist/Attribute-Handlers/*\nCopyright:\n Copyright (c) 2001-2009, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Carp/*\nCopyright:\n Copyright (c) 1994-2013 Larry Wall\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/Data-Dumper/*\nCopyright:\n Copyright (c) 1996-2019 Gurusamy Sarathy. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-CBuilder/*\nCopyright:\n Copyright (c) 2003-2005 Ken Williams. All rights reserved.\n Copyright (c) 2012-2020 Ken Williams. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/ExtUtils-ParseXS/*\nCopyright:\n Copyright 2002-2012 by Ken Williams, David Golden and other contributors.\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n Based on the ExtUtils::xsubpp code by Larry Wall and the Perl 5\n Porters, which was released under the same license terms.\n\nFiles: dist/Filter-Simple/*\nCopyright:\n Copyright (c) 2000-2008, Damian Conway. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software. It may be used, redistributed\n and/or modified under the same terms as Perl itself.\n\nFiles: dist/if/*\nCopyright: This software is copyright (c) 2002 by Ilya Zakharevich.\nLicense: GPL-1+ or Artistic\nComment:\n This is free software; you can redistribute it and/or modify it under\n the same terms as the Perl 5 programming language system itself.\n\nFiles: dist/I18N-LangTags/*\nCopyright:\n Copyright 1998+, Sean M. Burke <sburke at cpan.org>, all rights\n reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/I18N-LangTags/lib/I18N/LangTags/List.pm\nCopyright:\n Copyright (c) 2001+ Sean M. Burke. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You can redistribute and/or modify this document under the same terms\n as Perl itself.\n\nFiles: dist/IO/*\nCopyright:\n Copyright (c) 1996-2003 Graham Barr <gbarr at pobox.com>. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/IO/lib/IO/Socket.pm\nCopyright:\n Copyright (c) 1997-8 Graham Barr <gbarr at pobox.com>. All rights reserved.\n Copyright 2001, Lincoln Stein <lstein at cshl.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n .\n The atmark() implementation: Copyright 2001, Lincoln Stein <lstein at cshl.org>.\n This module is distributed under the same terms as Perl itself.\n Feel free to use, modify and redistribute it as long as you retain\n the correct attribution.\n\nFiles: dist/lib/*\nCopyright: as above for 'Files: *'\nLicense: GPL-1+ or Artistic\nComment:\n This package has the same copyright and license as the perl core.\n\nFiles: dist/Locale-Maketext/*\nCopyright:\n Copyright 1999-2004, Sean M. Burke <sburke at cpan.org>, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod\nCopyright: 1999 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/*\nCopyright:\n Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/Module-CoreList/corelist\nCopyright:\n Copyright (c) 2002-2007 by D.H. aka PodMaster\nLicense: GPL-1+ or Artistic\nComment:\n This program is distributed under the same terms as perl itself.\n\nFiles: dist/Module-CoreList/lib/Module/CoreList/Utils.pm\nCopyright:\n Copyright (C) 2013 Chris Williams. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This module is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Net-Ping/*\nCopyright:\n Copyright (c) 2017-2020, Reini Urban. All rights reserved.\n Copyright (c) 2016, cPanel Inc. All rights reserved.\n Copyright (c) 2012, Steve Peters. All rights reserved.\n Copyright (c) 2002-2003, Rob Brown. All rights reserved.\n Copyright (c) 2001, Colin McMillen. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you may redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: dist/PathTools/*\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/PathTools/Cwd.xs\nCopyright:\n Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.\n Copyright (c) 2003 Constantin S. Svintsoff <kostik at iclub.nsu.ru>\nLicense: GPL-1+ or Artistic, and BSD-3-clause-GENERIC\nComment:\n ----------------------------------------\n The main license applies to most of the code:\n .\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n .\n but portions of it have been taken from a BSD variant and are licensed\n under the terms of the \"BSD-3-clause-GENERIC\" license included in this file.\n .\n dist/PathTools/Cwd.pm states:\n .\n Portions of the C code in this library are copyright (c) 1994 by the\n Regents of the University of California. All rights reserved. The\n license on this code is compatible with the licensing of the rest of\n the distribution - please see the source code in F<Cwd.xs> for the\n details.\n .\n but, as discussed in\n http://rt.cpan.org/Public/Bug/Display.html?id=64116\n this is outdated and dist/PathTools/Cwd.xs itself contains the correct\n information.\n\nFiles: cpan/Pod-Perldoc/*\nCopyright:\n Copyright (c) 2002-2007 Sean M. Burke.\n Copyright (c) 2011 Mark Allen. All rights reserved.\n Copyright (c) 2011 brian d foy. All rights reserved.\n Copyright (c) 2017 Mark Allen.\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n\nFiles: dist/Storable/*\nCopyright:\n Copyright (c) 1995-2001, Raphael Manfredi\n Copyright (c) 2002-2014 by the Perl 5 Porters\n Copyright (c) 2016,2017 cPanel Inc\n Copyright (c) 2017, Reini Urban\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl 5 itself.\n\nFiles: dist/Storable/t/forgive.t\nCopyright:\n Copyright (c) 1995-2000, Raphael Manfredi\n (C) Copyright 1997, Universitat Dortmund, all rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/attach_errors.t\n dist/Storable/t/attach_singleton.t\n dist/Storable/t/circular_hook.t\nCopyright:\n Copyright 2005, Adam Kennedy.\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles:\n dist/Storable/t/code.t\n dist/Storable/t/sig_die.t\nCopyright:\n Copyright (c) 2002 Slaven Rezic\nLicense: GPL-1+ or Artistic\nComment:\n You may redistribute only under the same terms as Perl 5, as specified\n in the README file that comes with the distribution.\n\nFiles: dist/threads/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads is released under the same license as Perl.\n\nFiles: dist/threads-shared/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n threads::shared is released under the same license as Perl.\n\nFiles: dist/threads-shared/shared.xs\nCopyright:\n Copyright (c) 2001-2002, 2006 Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: dist/Test/*\nCopyright:\n Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.\n Copyright (c) 2001-2002 Michael G. Schwern.\n Copyright (c) 2002-2004 Sean M. Burke.\nLicense: GPL-1+ or Artistic\nComment:\n This package is free software and is provided \"as is\" without express\n or implied warranty. It may be used, redistributed and/or modified\n under the same terms as Perl itself.\n\nFiles: dist/Time-HiRes/*\nCopyright:\n Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.\n Copyright (c) 2002-2010 Jarkko Hietaniemi.\n Copyright (c) 2011, 2012, 2013 Andrew Main (Zefram) <zefram at fysh.org>\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: dist/XSLoader/*\nCopyright:\n Copyright (C) 1990-2011 by Larry Wall and others.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/attributes/*\nCopyright:\n Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008\n by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles:\n ext/Amiga-ARexx/*\n ext/Amiga-Exec/*\nCopyright:\n Copyright (C) 2013 by Andy Broad.\nLicense: GPL-1+ or Artistic\nComment:\n There is no license information included. It is assumed that this\n distribution is licensed under the same terms as Perl itself.\n\nFiles: ext/B/*\nCopyright:\n Copyright (c) 1996, 1997, 1998 Malcolm Beattie\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/B/B/Concise.pm\nCopyright:\n Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute and/or modify it\n under the same terms as Perl itself.\n\nFiles: ext/Devel-Peek/*\nCopyright:\n Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information included that clearly applies to the\n whole of this distribution. It is assumed that it is licensed under\n the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_aix.xs\nCopyright:\n This is an unpublished work copyright (c) 1992 Helios Software GmbH\n 3000 Hannover 1, Germany\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n It is assumed that this file is licensed under the same terms as Perl itself.\n\nFiles: ext/DynaLoader/dl_freemint.xs\nCopyright:\n based upon the file \"dl.c\", which is Copyright (c) 1994, Larry Wall\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Errno/*\nCopyright:\n Copyright (c) 1997-8 Graham Barr. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/File-Glob/*\nCopyright: unknown\nLicense: Artistic\nComment:\n The Perl interface was written by Nathan Torkington <gnat at frii.com>,\n and is released under the artistic license. Further modifications\n were made by Greg Bacon <gbacon at cs.uah.edu>, Gurusamy Sarathy\n <gsar at activestate.com>, and Thomas Wegner <wegner_thomas at yahoo.com>.\n\nFiles:\n ext/File-Glob/bsd_glob.c\n ext/File-Glob/bsd_glob.h\nCopyright:\n Copyright (c) 1989, 1993\n The Regents of the University of California. All rights reserved.\n .\n This code is derived from software contributed to Berkeley by\n Guido van Rossum.\nLicense: BSD-3-clause\n\nFiles: ext/Hash-Util/*\nCopyright: unknown\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n There is no license information in this distribution.\n It is assumed that it is licensed under the same terms as Perl itself.\n\nFiles: ext/Hash-Util/lib/Hash/Util.pm\nCopyright:\n hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n As above, it is assumed that this file is licensed under the same terms\n as Perl itself.\n .\n The copyright and license information of Array::RefElem, as fetched from\n <https://fastapi.metacpan.org/source/GAAS/Array-RefElem-1.00/README>, is as\n follows:\n .\n Copyright 2000 Gisle Aas <gisle at aas.no>\n .\n This library is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: ext/Hash-Util-FieldHash/*\nCopyright:\n Copyright (C) 2006-2007 by (Anno Siegel)\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself, either Perl version 5.8.7 or,\n at your option, any later version of Perl 5 you may have available.\n\nFiles: ext/I18N-Langinfo/*\nCopyright:\n Copyright 2001 by Jarkko Hietaniemi\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/mro/*\nCopyright:\n Copyright (c) 2007 Brandon L Black\n Copyright (c) 2008,2009 Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/Pod-Html/*\nCopyright: unknown\nLicense: Artistic\nComment:\n This program is distributed under the Artistic License.\n\nFiles: ext/SDBM_File/*\nCopyright: none\nLicense: SDBM-PUBLIC-DOMAIN\n\nFiles: ext/Win32CORE/*\nCopyright:\n Copyright (C) 2007 by Larry Wall and others\nLicense: GPL-1+ or Artistic\nComment:\n You may distribute under the terms of either the GNU General Public\n License or the Artistic License, as specified in the README file.\n\nFiles: ext/XS-APItest/*\nCopyright:\n Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.\n All Rights Reserved.\n .\n Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>\nLicense: GPL-1+ or Artistic\nComment:\n This library is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles: ext/XS-Typemap/*\nCopyright:\n Copyright (C) 2001 Tim Jenness All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the same terms as Perl itself.\n\nFiles:\n pod/perldebtut.pod\n pod/perlperf.pod\nCopyright:\n Richard Foley <richard.foley at rfi.net> Copyright (c) 2000\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n These files are a part of Perl itself, licensed as above.\n\nFiles: pod/perlembed.pod\nCopyright:\n Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant. All\n Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlexperiment.pod\nCopyright:\n Copyright 2010, brian d foy <brian.d.foy at gmail.com>\nLicense: GPL-1+ or Artistic\nComment:\n You can use and redistribute this document under the same terms as Perl\n itself.\n\nFiles:\n cpan/perlfaq/lib/perlfaq*.pod\nCopyright:\n Copyright (c) 1997-2010 Tom Christiansen, Nathan Torkington, and\n other authors as noted. All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples here are in the public\n domain. You are permitted and encouraged to use this code and any\n derivatives thereof in your own programs for fun or for profit as you\n see fit. A simple comment in the code giving credit to the FAQ would\n be courteous but is not required.\n\nFiles: cpan/perlfaq/lib/perlfaq.pod\nCopyright:\n Tom Christiansen wrote the original version of this document.\n brian d foy <bdfoy at cpan.org> wrote this version. See the\n individual perlfaq documents for additional copyright information.\nLicense: GPL-1+ or Artistic\nComment:\n This document is available under the same terms as Perl itself. Code\n examples in all the perlfaq documents are in the public domain. Use\n them as you see fit (and at your own risk with no warranty from anyone).\n\nFiles:\n pod/perlfilter.pod\n pod/perlthrtut.pod\nCopyright:\n copyright 1998 The Perl Journal\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: cpan/perlfaq/lib/perlglossary.pod\nCopyright:\n Based on the Glossary of I<Programming Perl>, Fourth Edition,\n by Tom Christiansen, brian d foy, Larry Wall, & Jon Orwant.\n Copyright (c) 2000, 1996, 1991, 2012 O'Reilly Media, Inc.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlmodinstall.pod\nCopyright:\n Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlpodstyle.pod\nCopyright:\n Copyright 1999, 2000, 2001, 2004, 2006, 2008, 2010, 2015, 2018 Russ Allbery\n <rra at cpan.org>\nLicense: RRA-KEEP-THIS-NOTICE\nComment:\n The license text can be found at the end of this file.\n\nFiles: pod/perlreapi.pod\nCopyright:\n Copyright 2006 Yves Orton and 2007 \u00c6var Arnfj\u00f6r\u00f0 Bjarmason.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or modify it under\n the same terms as Perl itself.\n\nFiles: pod/perlreftut.pod\nCopyright:\n Copyright 1998 The Perl Journal.\nLicense: GPL-1+ or Artistic\nComment:\n This documentation is free; you can redistribute it and/or modify it\n under the same terms as Perl itself.\n .\n Irrespective of its distribution, all code examples in these files are\n hereby placed into the public domain. You are permitted and\n encouraged to use this code in your own programs for fun or for profit\n as you see fit. A simple comment in the code giving credit would be\n courteous but is not required.\n\nFiles:\n pod/perlrequick.pod\n pod/perlretut.pod\nCopyright:\n Copyright (c) 2000 Mark Kvale\n All rights reserved.\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perlunicook.pod\nCopyright:\n Copyright (c) 2012 Tom Christiansen\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles: pod/perluniintro.pod\nCopyright:\n Copyright 2001-2011 Jarkko Hietaniemi <jhi at iki.fi>\nLicense: GPL-1+ or Artistic\nComment:\n This document may be distributed under the same terms as Perl itself.\n\nFiles:\n Copying\n pod/perlgpl.pod\nCopyright:\n Copyright (C) 1989 Free Software Foundation, Inc.\n 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\nLicense: DONT-CHANGE-THE-GPL\n\nFiles: t/io/shm.t\nCopyright:\n Copyright (C) 1999, Graham Barr <gbarr at pobox.com>.\n Copyright (C) 2007-2010, Marcus Holland-Moritz <mhx at cpan.org>.\nLicense: GPL-1+ or Artistic\nComment:\n This program is free software; you can redistribute it and/or\n modify it under the same terms as Perl itself.\n\nFiles: regen-configure/*\nCopyright:\n Copyright (c) 1996-1998, Andy Dougherty\n Copyright (c) 1999-2011, H.Merijn Brand\nLicense: GPL-1+ or Artistic or Artistic-dist\nComment:\n This directory is a snapshot of the upstream metaconfig repository,\n containing code originally forked from 'dist' upstream by Larry\n Wall and Raphael Manfredi. The 'dist/' subdirectory is unmodified\n upstream code, but the other subdirectories contain mixed code.\n Some units are dual licensed and some are specifically Artistic-only.\n .\n The bin/ subdirectory is being filtered from the upstream snapshot\n (with the Files-Excluded mechanism at the top of this copyright file)\n because it contains files generated from dist sources. The Debian\n package build uses the tools from the separate 'dist' package.\n .\n From regen-configure/U/README:\n .\n You may distribute the files contained in this distribution\n under the terms of either\n .\n a) the \"Artistic License\" which comes with Perl, or\n .\n b) the \"Artistic License\" which comes with dist, or\n .\n c) the GNU General Public License as published by the Free\n Software Foundation; either version 1, or (at your option) any\n later version (see the file \"Copying\" that comes with the\n Perl distribution).\n .\n The full text of the \"Artistic License\" which comes with dist\n differs slightly from the one that is in /usr/share/common-licenses\n on Debian systems, and can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: regen-configure/dist/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, 2012 Raphael Manfredi\n Copyright (c) 1996,1998 Andy Dougherty\n Copyright (c) 1996, Cygnus Support\n Copyright (c) 1996, Spider Boardman\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1997, Chip Salzenberg\n Copyright (c) 1998 Andy Dougherty\n Copyright (c) 1999-2001 Jarkko Hietaniemi\nLicense: Artistic-dist\nComment:\n This subdirectory contains unmodified 'dist' code that is\n licensed under the modified Artistic license detailed below\n under the \"Artistic-dist\" tag. The different files have\n separate copyright notices, collected above.\n\nFiles: regen-configure/U/*\nCopyright:\n Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi\n Copyright (c) 1996-2010, Andy Dougherty\n Copyright (c) 1996, Sven Verdoolaege\n Copyright (c) 1998-2016 Jarkko Hietaniemi\n Copyright (c) 2004-2018 H.Merijn Brand\n Copyright (c) 2006-2006, H.Merijn Brand & Nicholas Clark\n Copyright (c) 2011, H.Merijn Brand & Tony Cook\n Copyright (c) 2014-2014, Karl Williamson & H.Merijn Brand\n Copyright (c) 2016 H.Merijn Brand & Todd Rinaldo\n Copyright (c) 2016 Tony Cook\n Copyright (c) 2017, Lukas Mai\n Copyright (c) 2017 Dagfinn Ilmari Manns\u00e5ker\n Copyright (c) 2017-2019, Karl Williamson\n Copyright (c) 2020, Raphael Manfredi and Karl Williamson\n Copyright (c) 2021 H.Merijn Brand, Karl Williamson\n Copyright (c) 2021, H.Merijn Brand & Tony Cook\n Copyright (c) 2021 Nicholas Clark & H.Merijn Brand\nLicense: Artistic or GPL-1+ or Artistic-dist\nComment:\n From regen-configure/U/README:\n .\n The units in the \"modified\" directory have been derived from units\n associated with the metaconfig program of Raphael Manfredi's \"dist\"\n distribution. These units list Raphael Manfredi as the Copyright holder.\n dist is distributed under a modified version of the Perl Artistic License.\n Clause 7 of this modified license as contained in dist-3.0-pl60 provides:\n .\n 7. You may reuse parts of this Package in your own programs, provided\n that you explicitly state where you got them from, in the source code\n (and, left to your courtesy, in the documentation), duplicating\n all the associated copyright notices and disclaimers. Besides\n your changes, if any, must be clearly marked as such. Parts reused\n that way will no longer fall under this license if, and only if,\n the name of your program(s) have no immediate connection with the\n name of the Package itself or its associated programs. You may then\n apply whatever restrictions you wish on the reused parts or choose\n to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n In accordance with this clause, the versions of these units\n contained here are made available under the same terms as the\n rest of the units.\n .\n It is assumed that the above relicensing also applies to all files in\n the other subdirectories that are declared to be licensed under the\n same modified Artistic license.\n .\n The modified license can be found later in this file under the\n \"Artistic-dist\" tag.\n\nFiles: utf8.c\nCopyright:\n Portions Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern at hoehrmann.de>\nLicense: GPL-1+ or Artistic, and Expat\nComment:\n This program is free software; you can redistribute it and/or modify\n it under the terms of either:\n .\n a) the GNU General Public License as published by the Free Software\n Foundation; either version 1, or (at your option) any later\n version, or\n .\n b) the \"Artistic License\" which comes with Perl.\n\nFiles: debian/*\nCopyright:\n Portions of the Debian packaging are\n Copyright 2008-2011 Niko Tyni <ntyni at debian.org>\n Copyright 2011 Dominic Hargreaves <dom at earth.li>\n The other people listed in debian/changelog are most probably\n copyright holders too, but they have not included explicit copyright\n or licensing information.\nLicense: GPL-1+ or Artistic\nComment:\n ----------------------------------------\n The portions by Niko Tyni and Dominic Hargreaves may be redistributed\n and/or modified under the same terms as Perl itself. It is assumed that\n other contributors have placed their contributions under a compatible\n license.\n\nLicense: LGPL-2.1\n On Debian GNU/Linux systems, the complete text of the LGPL 2.1\n license can be found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: GPL-1+\n On Debian GNU/Linux systems, the complete text of the GNU General\n Public License can be found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: GPL-2+\n On Debian GNU/Linux systems, the complete text of version 2 of\n the GNU General Public License can be found in\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: Artistic\n On Debian GNU/Linux systems, the complete text of the\n Artistic Licence can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Artistic-2\n Copyright (c) 2000-2006, The Perl Foundation.\n .\n Everyone is permitted to copy and distribute verbatim copies of this\n license document, but changing it is not allowed.\n .\n Preamble\n .\n This license establishes the terms under which a given free software\n Package may be copied, modified, distributed, and/or redistributed.\n The intent is that the Copyright Holder maintains some artistic\n control over the development of that Package while still keeping the\n Package available as open source and free software.\n .\n You are always permitted to make arrangements wholly outside of this\n license directly with the Copyright Holder of a given Package. If the\n terms of this license do not permit the full use that you propose to\n make of the Package, you should contact the Copyright Holder and seek\n a different licensing arrangement.\n .\n Definitions\n .\n \"Copyright Holder\" means the individual(s) or organization(s) named in\n the copyright notice for the entire Package.\n .\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n .\n \"You\" and \"your\" means any person who would like to copy, distribute,\n or modify the Package.\n .\n \"Package\" means the collection of files distributed by the Copyright\n Holder, and derivatives of that collection and/or of those files. A\n given Package may consist of either the Standard Version, or a\n Modified Version.\n .\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n .\n \"Distributor Fee\" means any fee that you charge for Distributing this\n Package or providing support for this Package to another party. It\n does not mean licensing fees.\n .\n \"Standard Version\" refers to the Package if it has not been modified,\n or has been modified only in ways explicitly requested by the\n Copyright Holder.\n .\n \"Modified Version\" means the Package, if it has been changed, and such\n changes were not explicitly requested by the Copyright Holder.\n .\n \"Original License\" means this Artistic License as Distributed with the\n Standard Version of the Package, in its current version or as it may\n be modified by The Perl Foundation in the future.\n .\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n .\n \"Compiled\" form means the compiled bytecode, object code, binary, or\n any other form resulting from mechanical transformation or translation\n of the Source form.\n .\n Permission for Use and Modification Without Distribution\n .\n (1) You are permitted to use the Standard Version and create and use\n Modified Versions for any purpose without restriction, provided that\n you do not Distribute the Modified Version.\n .\n Permissions for Redistribution of the Standard Version\n .\n (2) You may Distribute verbatim copies of the Source form of the\n Standard Version of this Package in any medium without restriction,\n either gratis or for a Distributor Fee, provided that you duplicate\n all of the original copyright notices and associated disclaimers. At\n your discretion, such verbatim copies may or may not include a\n Compiled form of the Package.\n .\n (3) You may apply any bug fixes, portability changes, and other\n modifications made available from the Copyright Holder. The resulting\n Package will still be considered the Standard Version, and as such\n will be subject to the Original License.\n .\n Distribution of Modified Versions of the Package as Source\n .\n (4) You may Distribute your Modified Version as Source (either gratis\n or for a Distributor Fee, and with or without a Compiled form of the\n Modified Version) provided that you clearly document how it differs\n from the Standard Version, including, but not limited to, documenting\n any non-standard features, executables, or modules, and provided that\n you do at least ONE of the following:\n .\n (a) make the Modified Version available to the Copyright Holder of the\n Standard Version, under the Original License, so that the Copyright\n Holder may include your modifications in the Standard Version. (b)\n ensure that installation of your Modified Version does not prevent the\n user installing or running the Standard Version. In addition, the\n Modified Version must bear a name that is different from the name of\n the Standard Version. (c) allow anyone who receives a copy of the\n Modified Version to make the Source form of the Modified Version\n available to others under (i) the Original License or (ii) a license\n that permits the licensee to freely copy, modify and redistribute the\n Modified Version using the same licensing terms that apply to the copy\n that the licensee received, and requires that the Source form of the\n Modified Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor Fees are\n allowed.\n .\n Distribution of Compiled Forms of the Standard Version or Modified\n Versions without the Source\n .\n (5) You may Distribute Compiled forms of the Standard Version without\n the Source, provided that you include complete instructions on how to\n get the Source of the Standard Version. Such instructions must be\n valid at the time of your distribution. If these instructions, at any\n time while you are carrying out such distribution, become invalid, you\n must provide new instructions on demand or cease further distribution.\n If you provide valid instructions or cease distribution within thirty\n days after you become aware that the instructions are invalid, then\n you do not forfeit any of your rights under this license.\n .\n (6) You may Distribute a Modified Version in Compiled form without the\n Source, provided that you comply with Section 4 with respect to the\n Source of the Modified Version.\n .\n Aggregating or Linking the Package\n .\n (7) You may aggregate the Package (either the Standard Version or\n Modified Version) with other packages and Distribute the resulting\n aggregation provided that you do not charge a licensing fee for the\n Package. Distributor Fees are permitted, and licensing fees for other\n components in the aggregation are permitted. The terms of this license\n apply to the use and Distribution of the Standard or Modified Versions\n as included in the aggregation.\n .\n (8) You are permitted to link Modified and Standard Versions with\n other works, to embed the Package in a larger work of your own, or to\n build stand-alone binary or bytecode versions of applications that\n include the Package, and Distribute the result without restriction,\n provided the result does not expose a direct interface to the Package.\n .\n Items That are Not Considered Part of a Modified Version\n .\n (9) Works (including, but not limited to, modules and scripts) that\n merely extend or make use of the Package, do not, by themselves, cause\n the Package to be a Modified Version. In addition, such works are not\n considered parts of the Package itself, and are not subject to the\n terms of this license.\n .\n General Provisions\n .\n (10) Any use, modification, and distribution of the Standard or\n Modified Versions is governed by this Artistic License. By using,\n modifying or distributing the Package, you accept this license. Do not\n use, modify, or distribute the Package, if you do not accept this\n license.\n .\n (11) If your Modified Version has been derived from a Modified Version\n made by someone other than you, you are nevertheless required to\n ensure that your Modified Version complies with the requirements of\n this license.\n .\n (12) This license does not grant you the right to use any trademark,\n service mark, tradename, or logo of the Copyright Holder.\n .\n (13) This license includes the non-exclusive, worldwide,\n free-of-charge patent license to make, have made, use, offer to sell,\n sell, import and otherwise transfer the Package with respect to any\n patent claims licensable by the Copyright Holder that are necessarily\n infringed by the Package. If you institute patent litigation\n (including a cross-claim or counterclaim) against any party alleging\n that the Package constitutes direct or contributory patent\n infringement, then this Artistic License to you shall terminate on the\n date that such litigation is filed.\n .\n (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT\n HOLDER AND CONTRIBUTORS \"AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED\n WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\n PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT\n PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT\n HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT,\n INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE\n OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BZIP\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n 2. The origin of this software must not be misrepresented; you must\n not claim that you wrote the original software. If you use this\n software in a product, an acknowledgment in the product\n documentation would be appreciated but is not required.\n .\n 3. Altered source versions must be plainly marked as such, and must\n not be misrepresented as being the original software.\n .\n 4. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\n OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\n DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n Julian Seward, jseward at bzip.org\n bzip2/libbzip2 version 1.0.5 of 10 December 2007\n\nLicense: ZLIB\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n .\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n .\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nLicense: BSD-3-clause-with-weird-numbering\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-4-clause-POWERDOG\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n 3. All advertising materials mentioning features or use of this\n software must display the following acknowledgement:\n This product includes software developed by Powerdog Industries.\n 4. The name of Powerdog Industries may not be used to endorse or\n promote products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY POWERDOG INDUSTRIES ``AS IS'' AND ANY\n EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE POWERDOG INDUSTRIES BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: Unicode\n EXHIBIT 1\n UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE\n .\n Unicode Data Files include all data files under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/ . Unicode Data Files\n do not include PDF online code charts under the directory\n http://www.unicode.org/Public/. Software includes any\n source code published in the Unicode Standard or under the directories\n http://www.unicode.org/Public/, http://www.unicode.org/reports/,\n and http://www.unicode.org/cldr/data/.\n .\n NOTICE TO USER: Carefully read the following legal agreement. BY\n DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE\n INC.'S DATA FILES (\"DATA FILES\"), AND/OR SOFTWARE (\"SOFTWARE\"), YOU\n UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND\n CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,\n INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.\n .\n COPYRIGHT AND PERMISSION NOTICE\n .\n Copyright \u00a9 1991-2011 Unicode, Inc. All rights\n reserved. Distributed under the Terms of Use in\n http://www.unicode.org/copyright.html.\n .\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of the Unicode data files and any associated\n documentation (the \"Data Files\") or Unicode software and any\n associated documentation (the \"Software\") to deal in the Data Files\n or Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute,\n and/or sell copies of the Data Files or Software, and to permit\n persons to whom the Data Files or Software are furnished to do so,\n provided that (a) the above copyright notice(s) and this permission\n notice appear with all copies of the Data Files or Software,\n (b) both the above copyright notice(s) and this permission notice\n appear in associated documentation, and (c) there is clear notice\n in each modified Data File or in the Software as well as in the\n documentation associated with the Data File(s) or Software that\n the data or software has been modified.\n .\n THE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY\n OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\n WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\n AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE\n COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE\n FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,\n OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\n TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n PERFORMANCE OF THE DATA FILES OR SOFTWARE.\n .\n Except as contained in this notice, the name of a copyright holder\n shall not be used in advertising or otherwise to promote the sale,\n use or other dealings in these Data Files or Software without\n prior written authorization of the copyright holder.\n\nLicense: BSD-3-clause-GENERIC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The names of the authors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: REGCOMP\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: TEXT-TABS\n This module may be modified, used, copied, and redistributed at your own risk.\n .\n Although allowed by the preceding license, please do not publicly\n redistribute modified versions of this code with the name \"Text::Tabs\"\n unless it passes the unmodified Text::Tabs test suite.\n\nLicense: DONT-CHANGE-THE-GPL\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nLicense: SDBM-PUBLIC-DOMAIN\n From ext/SDBM_File/sdbm/README:\n .\n The entire sdbm library package, as authored by me, Ozan S. Yigit,\n is hereby placed in the public domain. As such, the author is not\n responsible for the consequences of use of this software, no\n matter how awful, even if they arise from defects in it. There is no\n expressed or implied warranty for the sdbm library.\n .\n Since the sdbm library package is in the public domain, this original\n release or any additional public-domain releases of the modified\n original cannot possibly (by definition) be withheld from you. Also\n by definition, You (singular) have all the rights to this code\n (including the right to sell without permission, the right to\n hoard[3] and the right to do other icky things as you see fit)\n but those rights are also granted to everyone else.\n .\n Please note that all previous distributions of this software\n contained a copyright (which is now dropped) to protect its origins\n and its current public domain status against any possible claims\n and/or challenges.\n\nLicense: GPL-3+-WITH-BISON-EXCEPTION\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n As a special exception, you may create a larger work that contains\n part or all of the Bison parser skeleton and distribute that work\n under terms of your choice, so long as that work isn't itself a\n parser generator using the skeleton or a modified version thereof\n as a parser skeleton. Alternatively, if you modify or redistribute\n the parser skeleton itself, you may (at your option) remove this\n special exception, which will cause the skeleton and the resulting\n Bison output files to be licensed under the GNU General Public\n License without this special exception.\n .\n This special exception was added by the Free Software Foundation in\n version 2.2 of Bison.\n\nLicense: HSIEH-DERIVATIVE\n The derivative content includes raw computer source code, ideas,\n opinions, and excerpts whose original source is covered under another\n license and transformations of such derivatives. Note that mere excerpts\n by themselves (with the exception of raw source code) are not considered\n derivative works under this license. Use and redistribution is limited\n to the following conditions:\n .\n One may not create a derivative work which, in any way, violates the\n Paul Hsieh exposition license described above on the original content.\n .\n One may not apply a license to a derivative work that precludes\n anyone else from using and redistributing derivative content.\n .\n One may not attribute any derivative content to authors not involved\n in the creation of the content, though an attribution to the author\n is not necessary.\n\nLicense: HSIEH-BSD\n Copyright (c) 2010, Paul Hsieh\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n Neither my name, Paul Hsieh, nor the names of any other contributors\n to the code use may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: CC0-1.0\n Statatement of Purpose\n .\n The laws of most jurisdictions throughout the world automatically confer\n exclusive Copyright and Related Rights (defined below) upon the creator\n and subsequent owner(s) (each and all, an \"owner\") of an original work\n of authorship and/or a database (each, a \"Work\").\n .\n Certain owners wish to permanently relinquish those rights to a Work\n for the purpose of contributing to a commons of creative, cultural and\n scientific works (\"Commons\") that the public can reliably and without\n fear of later claims of infringement build upon, modify, incorporate in\n other works, reuse and redistribute as freely as possible in any form\n whatsoever and for any purposes, including without limitation commercial\n purposes. These owners may contribute to the Commons to promote the ideal\n of a free culture and the further production of creative, cultural and\n scientific works, or to gain reputation or greater distribution for\n their Work in part through the use and efforts of others.\n .\n For these and/or other purposes and motivations, and without any\n expectation of additional consideration or compensation, the person\n associating CC0 with a Work (the \"Affirmer\"), to the extent that\n he or she is an owner of Copyright and Related Rights in the Work,\n voluntarily elects to apply CC0 to the Work and publicly distribute\n the Work under its terms, with knowledge of his or her Copyright and\n Related Rights in the Work and the meaning and intended legal effect\n of CC0 on those rights.\n .\n 1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (\"Copyright\n and Related Rights\"). Copyright and Related Rights include, but are\n not limited to, the following:\n .\n the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n .\n moral rights retained by the original author(s) and/or performer(s);\n .\n publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n .\n rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n .\n rights protecting the extraction, dissemination, use and reuse of data in a Work;\n .\n database rights (such as those arising under Directive 96/9/EC\n of the European Parliament and of the Council of 11 March 1996\n on the legal protection of databases, and under any national\n implementation thereof, including any amended or successor version\n of such directive); and\n .\n other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n .\n 2. Waiver. To the greatest extent permitted by, but not in contravention\n of, applicable law, Affirmer hereby overtly, fully, permanently,\n irrevocably and unconditionally waives, abandons, and surrenders all\n of Affirmer's Copyright and Related Rights and associated claims and\n causes of action, whether now known or unknown (including existing\n as well as future claims and causes of action), in the Work (i) in\n all territories worldwide, (ii) for the maximum duration provided by\n applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"Waiver\"). Affirmer makes the\n Waiver for the benefit of each member of the public at large and to the\n detriment of Affirmer's heirs and successors, fully intending that such\n Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the\n quiet enjoyment of the Work by the public as contemplated by Affirmer's\n express Statement of Purpose.\n .\n 3. Public License Fallback. Should any part of the Waiver for any\n reason be judged legally invalid or ineffective under applicable law,\n then the Waiver shall be preserved to the maximum extent permitted\n taking into account Affirmer's express Statement of Purpose. In\n addition, to the extent the Waiver is so judged Affirmer hereby\n grants to each affected person a royalty-free, non transferable, non\n sublicensable, non exclusive, irrevocable and unconditional license\n to exercise Affirmer's Copyright and Related Rights in the Work (i)\n in all territories worldwide, (ii) for the maximum duration provided\n by applicable law or treaty (including future time extensions), (iii)\n in any current or future medium and for any number of copies, and (iv)\n for any purpose whatsoever, including without limitation commercial,\n advertising or promotional purposes (the \"License\"). The License shall\n be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity\n or ineffectiveness shall not invalidate the remainder of the License,\n and in such case Affirmer hereby affirms that he or she will not (i)\n exercise any of his or her remaining Copyright and Related Rights in\n the Work or (ii) assert any associated claims and causes of action\n with respect to the Work, in either case contrary to Affirmer's express\n Statement of Purpose.\n .\n 4. Limitations and Disclaimers.\n .\n No trademark or patent rights held by Affirmer are waived,\n abandoned, surrendered, licensed or otherwise affected by this\n document.\n .\n Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties\n of title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy,\n or the present or absence of errors, whether or not discoverable,\n all to the greatest extent permissible under applicable law.\n .\n Affirmer disclaims responsibility for clearing rights of other\n persons that may apply to the Work or any use thereof, including\n without limitation any person's Copyright and Related Rights in the\n Work. Further, Affirmer disclaims responsibility for obtaining any\n necessary consents, permissions or other rights required for any\n use of the Work.\n .\n Affirmer understands and acknowledges that Creative Commons is not\n a party to this document and has no duty or obligation with respect\n to this CC0 or use of the Work.\nComment:\n This license text was retrieved from\n <http://creativecommons.org/publicdomain/zero/1.0/>\n on Fri, 05 Feb 2016 20:30:28 +0200\n\nLicense: RRA-KEEP-THIS-NOTICE\n Copying and distribution of this file, with or without modification, are\n permitted in any medium without royalty provided the copyright notice and\n this notice are preserved. This file is offered as-is, without any\n warranty.\n\nLicense: Artistic-dist\n The \"Artistic License\"\n .\n Preamble\n .\n The intent of this document is to state the conditions under which a\n Package may be copied, such that the Copyright Holder maintains some\n semblance of artistic control over the development of the Package,\n while giving the users of the package the right to use and distribute\n the Package in a more-or-less customary fashion, plus the right to make\n reasonable modifications.\n .\n It also grants you the rights to reuse parts of a Package in your own\n programs without transferring this License to those programs, provided\n that you meet some reasonable requirements.\n .\n Definitions:\n .\n \"Package\" refers to the collection of files distributed by the\n Copyright Holder, and derivatives of that collection of files\n created through textual modification.\n .\n \"Standard Version\" refers to such a Package if it has not been\n modified, or has been modified in accordance with the wishes\n of the Copyright Holder as specified below.\n .\n \"Copyright Holder\" is whoever is named in the copyright or\n copyrights for the package.\n .\n \"You\" is you, if you're thinking about copying or distributing\n this Package.\n .\n \"Reasonable copying fee\" is whatever you can justify on the\n basis of media cost, duplication charges, time of people involved,\n and so on. (You will not be required to justify it to the\n Copyright Holder, but only to the computing community at large\n as a market that must bear the fee.)\n .\n \"Freely Available\" means that no fee is charged for the item\n itself, though there may be fees involved in handling the item.\n It also means that recipients of the item may redistribute it\n under the same conditions they received it.\n .\n 1. You may make and give away verbatim copies of the source form of the\n Standard Version of this Package without restriction, provided that you\n duplicate all of the original copyright notices and associated disclaimers.\n .\n 2. You may apply bug fixes, portability fixes and other modifications\n derived from the Public Domain or from the Copyright Holder. A Package\n modified in such a way shall still be considered the Standard Version.\n .\n 3. You may otherwise modify your copy of this Package in any way, provided\n that you insert a prominent notice in each changed file stating how and\n when you changed that file, and provided that you do at least ONE of the\n following:\n .\n a) place your modifications in the Public Domain or otherwise make them\n Freely Available, such as by posting said modifications to Usenet or\n an equivalent medium, or placing the modifications on a major archive\n site such as uunet.uu.net, or by allowing the Copyright Holder to include\n your modifications in the Standard Version of the Package.\n .\n b) use the modified Package only within your corporation or organization.\n .\n c) rename any non-standard executables so the names do not conflict\n with standard executables, which must also be provided, and provide\n a separate manual page for each non-standard executable that clearly\n documents how it differs from the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 4. You may distribute the programs of this Package in object code or\n executable form, provided that you do at least ONE of the following:\n .\n a) distribute a Standard Version of the executables and library files,\n together with instructions (in the manual page or equivalent) on where\n to get the Standard Version.\n .\n b) accompany the distribution with the machine-readable source of\n the Package with your modifications.\n .\n c) give non-standard executables non-standard names, and clearly\n document the differences in manual pages (or equivalent), together\n with instructions on where to get the Standard Version.\n .\n d) make other distribution arrangements with the Copyright Holder.\n .\n 5. You may charge a reasonable copying fee for any distribution of this\n Package. You may charge any fee you choose for support of this\n Package. You may not charge a fee for this Package itself. However,\n you may distribute this Package in aggregate with other (possibly\n commercial) programs as part of a larger (possibly commercial) software\n distribution provided that you do not advertise this Package as a\n product of your own.\n .\n 6. The scripts and library files supplied as input to or produced as\n output from the programs of this Package do not automatically fall\n under the copyright of this Package, but belong to whoever generated\n them, and may be sold commercially, and may be aggregated with this\n Package. If such scripts or library files are aggregated with this\n Package via the so-called \"undump\" or \"unexec\" methods of producing a\n binary executable image, then distribution of such an image shall\n neither be construed as a distribution of this Package nor shall it\n fall under the restrictions of Paragraphs 3 and 4, provided that you do\n not represent such an executable image as a Standard Version of this\n Package.\n .\n 7. You may reuse parts of this Package in your own programs, provided that\n you explicitly state where you got them from, in the source code (and, left\n to your courtesy, in the documentation), duplicating all the associated\n copyright notices and disclaimers. Besides your changes, if any, must be\n clearly marked as such. Parts reused that way will no longer fall under this\n license if, and only if, the name of your program(s) have no immediate\n connection with the name of the Package itself or its associated programs.\n You may then apply whatever restrictions you wish on the reused parts or\n choose to place them in the Public Domain--this will apply only within the\n context of your package.\n .\n 8. The name of the Copyright Holder may not be used to endorse or promote\n products derived from this software without specific prior written permission.\n .\n 9. THIS PACKAGE IS PROVIDED \"AS IS\" AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n .\n The End\nComment:\n This license was copied from the upstream 'dist' repository,\n https://github.com/rmanfredi/dist.git\n at Sun, 15 Oct 2017 13:07:36 +0300.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/perl-base at 5.36.0-7+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4726,6 +13584,26 @@
"content": "d9d0e75779cb79af869181f17b93c5c263a2b89cac6a0193c436160a4483ddc1"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.0+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: procps-ng\nSource: https://gitlab.com/procps-ng/procps\n\nFiles: *\nCopyright: 1998-2004 Albert Cahalan\n 1991 Tony Rems <rembo at unisoft.com>\n 1993 Larry Greenfield\n 1996 Charles Blake\n 1999 Mike Coleman <mkc at acm.org>\n 2004 Nicholas Miell\n 2003 Chris Rivera\n 2003 Robert Love <rml at tech9.net>\n 2008 Morty Abzug\n 2009 Jarrod Lowe <procps at rrod.net>\n 1992 Branko Lankester\n ???? David Engel <david at ods.com>\n 1992-1998 Michael K. Johnson <johnsonm at sunsite.unc.edu>\n 2012-2022 Craig Small <csmall at enc.com.au>\n 1995 Martin Schulze <joey at infodrom.north.de>\nLicense: LGPL-2.1+\n\nFiles: src/top/*\nCopyright: 2002-2022 James C. Warner\nLicense: LGPL-2.0+\n\nFiles: src/pgrep.*\nCopyright: 2000 Kjetil Torgrim Homme <kjetilho at ifi.uio.no>\n 2002,2006 Albert Cahalan\n 2012 Roberto Polli <rpolli at babel.it>\nLicense: GPL-2.0+\n\nFiles: src/pidof.*\nCopyright: 2013 Jaromir Capik <jcapik at redhat.com>\nLicense: GPL-2.0+\n\nFiles: src/free.*\nCopyright: 2011 Sami Kerola <kerolasa at iki.fi>\n 2002-2003 Robert Love <rml at tech9.net>\n 1992 Brian Edmonds\n 1992 Rafal Maszkowski\n 2004 Albert Cahalan\nLicense: GPL-2.0+\n\nFiles: src/sysctl.*\nCopyright: 1999 George Staikos\nLicense: GPL-2.0+\n\nFiles: debian/*\nCopyright: 1997-2022 Craig Small <csmall at debian.org>\n 1996-1997 Helmut Geyer <Helmut.Geyer at iwr.uni-heidelberg.de>\nLicense: GPL-2.0+\n\nLicense: GPL-2.0+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 2 can be found in \"/usr/share/common-licenses/GPL-2\".\n\nLicense: LGPL-2.0+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-2\".\n\nLicense: LGPL-2.1+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-2.1\".\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/procps at 2:4.0.2-3?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4738,8 +13616,41 @@
"content": "ad338a71bb8d67bdbcbe411ae6f65d20"
},
{
- "alg": "SHA-256",
- "content": "69317523fe56429aa361545416ad339d138c1500e5a604856a80dd9074b4e35c"
+ "alg": "SHA-256",
+ "content": "69317523fe56429aa361545416ad339d138c1500e5a604856a80dd9074b4e35c"
+ }
+ ],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU\n Readline library.\n .\n This package was put together by Matthias Klose <doko at debian.org>,\n derived from the bash package by Guy Maor <maor at debian.org>.\nUpstream-Name: Readline\nUpstream-Contact: \n Chet Ramey <chet.ramey at case.edu>\n Jeff Solomon <jsolomon at stanford.edu> (examples/excallback.c)\n Harold Levy <Harold.Levy at synopsys.com> (examples/rl-fgets.c)\nSource: http://ftp.gnu.org/gnu/readline/\n\nFiles: *\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n Readline is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Readline. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: examples/readlinebuf.h\n examples/rl-fgets.c\n examples/rlfe/*\n examples/rlwrap-*.tar.gz\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\n Copyright (c) 2001 by Dimitris Vyzovitis [vyzo at media.mit.edu]\n Copyright (C) 1999 Jeff Solomon (examples/excallback.c)\n Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c)\n Copyright (c) 1993-2002 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n Copyright (c) 1993-2002 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n Copyright (C) 1987 Oliver Laumann (examples/rlfe)\n Copyright (C) 2004, 1999 Per Bothner\n Copyright (C) 2000-2007 Hans Lub\n Copyright (C) 1999-2001 Geoff Wing\n Copyright (C) Damian Ivereigh 2000\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program (see the file COPYING); if not, write to the\n Free Software Foundation, Inc.,\n 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n The rlwrap example is also available in its own Debian package.\n The code copyrighted by Damian Ivereigh is licensed under LGPL-2.1+.\n\nFiles: doc/*.texi doc/*.info doc/*.html doc/*.[03] doc/*.dvi doc/*.pdf doc/*.ps\nCopyright:\n Copyright (C) 1988-2015 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL'.\n\nFiles: support/wcwidth.c\nCopyright: Markus Kuhn\nLicense: ISC-no-attribution\n Permission to use, copy, modify, and distribute this software\n for any purpose and without fee is hereby granted. The author\n disclaims all warranties with regard to this software.\n\nFiles: debian/*\nCopyright:\n Copyright (C) 1999-2009 Matthias Klose <doko at debian.org>\nLicense: GPL-3\n The Debian packaging is licensed under the GPL version 3, \n see `/usr/share/common-licenses/GPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "ISC-no-attribution",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nComment:\n This is Debian GNU/Linux's prepackaged version of the FSF's GNU\n Readline library.\n .\n This package was put together by Matthias Klose <doko at debian.org>,\n derived from the bash package by Guy Maor <maor at debian.org>.\nUpstream-Name: Readline\nUpstream-Contact: \n Chet Ramey <chet.ramey at case.edu>\n Jeff Solomon <jsolomon at stanford.edu> (examples/excallback.c)\n Harold Levy <Harold.Levy at synopsys.com> (examples/rl-fgets.c)\nSource: http://ftp.gnu.org/gnu/readline/\n\nFiles: *\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\nLicense: GPL-3+\n Readline is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with Readline. If not, see <http://www.gnu.org/licenses/>.\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nFiles: examples/readlinebuf.h\n examples/rl-fgets.c\n examples/rlfe/*\n examples/rlwrap-*.tar.gz\nCopyright:\n Copyright (C) 1987-2022 Free Software Foundation, Inc.\n Copyright (c) 2001 by Dimitris Vyzovitis [vyzo at media.mit.edu]\n Copyright (C) 1999 Jeff Solomon (examples/excallback.c)\n Copyright (C) 2003-2004 Harold Levy (examples/rl-fgets.c)\n Copyright (c) 1993-2002 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n Copyright (c) 1993-2002 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n Copyright (C) 1987 Oliver Laumann (examples/rlfe)\n Copyright (C) 2004, 1999 Per Bothner\n Copyright (C) 2000-2007 Hans Lub\n Copyright (C) 1999-2001 Geoff Wing\n Copyright (C) Damian Ivereigh 2000\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program (see the file COPYING); if not, write to the\n Free Software Foundation, Inc.,\n 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\nComment:\n On Debian systems, the complete text of the GNU General Public License\n version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n .\n The rlwrap example is also available in its own Debian package.\n The code copyrighted by Damian Ivereigh is licensed under LGPL-2.1+.\n\nFiles: doc/*.texi doc/*.info doc/*.html doc/*.[03] doc/*.dvi doc/*.pdf doc/*.ps\nCopyright:\n Copyright (C) 1988-2015 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\nComment:\n On Debian systems, the complete text of the GNU Free Documentation\n License can be found in `/usr/share/common-licenses/GFDL'.\n\nFiles: support/wcwidth.c\nCopyright: Markus Kuhn\nLicense: ISC-no-attribution\n Permission to use, copy, modify, and distribute this software\n for any purpose and without fee is hereby granted. The author\n disclaims all warranties with regard to this software.\n\nFiles: debian/*\nCopyright:\n Copyright (C) 1999-2009 Matthias Klose <doko at debian.org>\nLicense: GPL-3\n The Debian packaging is licensed under the GPL version 3, \n see `/usr/share/common-licenses/GPL-3'.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-only"
+ }
}
],
"purl": "pkg:deb/debian/readline-common at 8.2-1.3?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
@@ -4758,6 +13669,55 @@
"content": "177cacdfe9508448d84bf25534a87a7fcc058d8e2dcd422672851ea13f2115df"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "name": "GFDL-NIV-1.3+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU sed\nSource: ftp://ftp.gnu.org/gnu/sed/\nComment: This is the Debian GNU/Linux prepackaged version of sed.\n It is currently maintained by Clint Adams <clint at debian.org>.\n\nFiles: *\n doc/local.mk\nCopyright: 1989-2020 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: GPL-3+\n GNU sed is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n On Debian GNU/Linux systems you can find a copy of the GPL in\n /usr/share/common-licenses/GPL-3\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: doc/*\nCopyright: 1998-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian GNU/Linux systems you can find a copy of the GFDL in\n /usr/share/common-licenses/GFDL-1.3\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.\n (c) 1996,1999 by Internet Software Consortium.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles: testsuite/bsd.sh\nCopyright: (c) 1992 Diomidis Spinellis.\n (c) 1992, 1993 The Regents of the University of California. All rights reserved.\nLicense: BSD-4-clause-UC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. <deleted>\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: testsuite/BOOST.tests\nCopyright: 2004 John Maddock\nComment: Tests taken from BOOST testsuite and adapted to glibc regex.\nLicense: BSL-1\n Boost Software License - Version 1.0 - August 17th, 2003\n .\n Permission is hereby granted, free of charge, to any person or organization\n obtaining a copy of the software and accompanying documentation covered by\n this license (the \"Software\") to use, reproduce, display, distribute,\n execute, and transmit the Software, and to prepare derivative works of the\n Software, and to permit third-parties to whom the Software is furnished to\n do so, all subject to the following:\n .\n The copyright notices in the Software and this entire statement, including\n the above license grant, this restriction and the following disclaimer,\n must be included in all copies of the Software, in whole or in part, and\n all derivative works of the Software, unless such copies or derivative\n works are solely in the form of machine-executable object code generated by\n a source language processor.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\n SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\n FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nFiles: testsuite/PCRE.tests\nCopyright: 1997-2003 University of Cambridge\nLicense: pcre\n Permission is granted to anyone to use this software for any purpose on any\n computer system, and to redistribute it freely, subject to the following\n restrictions:\n .\n 1. This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n .\n 2. The origin of this software must not be misrepresented, either by\n explicit claim or by omission. In practice, this means that if you use\n PCRE in software that you distribute to others, commercially or\n otherwise, you must put a sentence like this\n .\n Regular expression support is provided by the PCRE library package,\n which is open source software, written by Philip Hazel, and copyright\n by the University of Cambridge, England.\n .\n somewhere reasonably visible in your documentation and in any relevant\n files or online help data or similar. A reference to the ftp site for\n the source, that is, to\n .\n ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\n .\n should also be given in the documentation. However, this condition is not\n intended to apply to whole chains of software. If package A includes PCRE,\n it must acknowledge it, but if package B is software that includes package\n A, the condition is not imposed on package B (unless it uses PCRE\n independently).\n .\n 3. Altered versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n .\n 4. If PCRE is embedded in any software that is released under the GNU\n General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\n then the terms of that licence shall supersede any condition above with\n which it is incompatible.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "ISC"
+ }
+ },
+ {
+ "license": {
+ "name": "BSD-4-clause-UC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU sed\nSource: ftp://ftp.gnu.org/gnu/sed/\nComment: This is the Debian GNU/Linux prepackaged version of sed.\n It is currently maintained by Clint Adams <clint at debian.org>.\n\nFiles: *\n doc/local.mk\nCopyright: 1989-2020 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: GPL-3+\n GNU sed is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n On Debian GNU/Linux systems you can find a copy of the GPL in\n /usr/share/common-licenses/GPL-3\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: doc/*\nCopyright: 1998-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian GNU/Linux systems you can find a copy of the GFDL in\n /usr/share/common-licenses/GFDL-1.3\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.\n (c) 1996,1999 by Internet Software Consortium.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles: testsuite/bsd.sh\nCopyright: (c) 1992 Diomidis Spinellis.\n (c) 1992, 1993 The Regents of the University of California. All rights reserved.\nLicense: BSD-4-clause-UC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. <deleted>\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: testsuite/BOOST.tests\nCopyright: 2004 John Maddock\nComment: Tests taken from BOOST testsuite and adapted to glibc regex.\nLicense: BSL-1\n Boost Software License - Version 1.0 - August 17th, 2003\n .\n Permission is hereby granted, free of charge, to any person or organization\n obtaining a copy of the software and accompanying documentation covered by\n this license (the \"Software\") to use, reproduce, display, distribute,\n execute, and transmit the Software, and to prepare derivative works of the\n Software, and to permit third-parties to whom the Software is furnished to\n do so, all subject to the following:\n .\n The copyright notices in the Software and this entire statement, including\n the above license grant, this restriction and the following disclaimer,\n must be included in all copies of the Software, in whole or in part, and\n all derivative works of the Software, unless such copies or derivative\n works are solely in the form of machine-executable object code generated by\n a source language processor.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\n SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\n FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nFiles: testsuite/PCRE.tests\nCopyright: 1997-2003 University of Cambridge\nLicense: pcre\n Permission is granted to anyone to use this software for any purpose on any\n computer system, and to redistribute it freely, subject to the following\n restrictions:\n .\n 1. This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n .\n 2. The origin of this software must not be misrepresented, either by\n explicit claim or by omission. In practice, this means that if you use\n PCRE in software that you distribute to others, commercially or\n otherwise, you must put a sentence like this\n .\n Regular expression support is provided by the PCRE library package,\n which is open source software, written by Philip Hazel, and copyright\n by the University of Cambridge, England.\n .\n somewhere reasonably visible in your documentation and in any relevant\n files or online help data or similar. A reference to the ftp site for\n the source, that is, to\n .\n ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\n .\n should also be given in the documentation. However, this condition is not\n intended to apply to whole chains of software. If package A includes PCRE,\n it must acknowledge it, but if package B is software that includes package\n A, the condition is not imposed on package B (unless it uses PCRE\n independently).\n .\n 3. Altered versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n .\n 4. If PCRE is embedded in any software that is released under the GNU\n General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\n then the terms of that licence shall supersede any condition above with\n which it is incompatible.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "BSL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU sed\nSource: ftp://ftp.gnu.org/gnu/sed/\nComment: This is the Debian GNU/Linux prepackaged version of sed.\n It is currently maintained by Clint Adams <clint at debian.org>.\n\nFiles: *\n doc/local.mk\nCopyright: 1989-2020 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: GPL-3+\n GNU sed is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n On Debian GNU/Linux systems you can find a copy of the GPL in\n /usr/share/common-licenses/GPL-3\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: doc/*\nCopyright: 1998-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian GNU/Linux systems you can find a copy of the GFDL in\n /usr/share/common-licenses/GFDL-1.3\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.\n (c) 1996,1999 by Internet Software Consortium.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles: testsuite/bsd.sh\nCopyright: (c) 1992 Diomidis Spinellis.\n (c) 1992, 1993 The Regents of the University of California. All rights reserved.\nLicense: BSD-4-clause-UC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. <deleted>\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: testsuite/BOOST.tests\nCopyright: 2004 John Maddock\nComment: Tests taken from BOOST testsuite and adapted to glibc regex.\nLicense: BSL-1\n Boost Software License - Version 1.0 - August 17th, 2003\n .\n Permission is hereby granted, free of charge, to any person or organization\n obtaining a copy of the software and accompanying documentation covered by\n this license (the \"Software\") to use, reproduce, display, distribute,\n execute, and transmit the Software, and to prepare derivative works of the\n Software, and to permit third-parties to whom the Software is furnished to\n do so, all subject to the following:\n .\n The copyright notices in the Software and this entire statement, including\n the above license grant, this restriction and the following disclaimer,\n must be included in all copies of the Software, in whole or in part, and\n all derivative works of the Software, unless such copies or derivative\n works are solely in the form of machine-executable object code generated by\n a source language processor.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\n SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\n FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nFiles: testsuite/PCRE.tests\nCopyright: 1997-2003 University of Cambridge\nLicense: pcre\n Permission is granted to anyone to use this software for any purpose on any\n computer system, and to redistribute it freely, subject to the following\n restrictions:\n .\n 1. This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n .\n 2. The origin of this software must not be misrepresented, either by\n explicit claim or by omission. In practice, this means that if you use\n PCRE in software that you distribute to others, commercially or\n otherwise, you must put a sentence like this\n .\n Regular expression support is provided by the PCRE library package,\n which is open source software, written by Philip Hazel, and copyright\n by the University of Cambridge, England.\n .\n somewhere reasonably visible in your documentation and in any relevant\n files or online help data or similar. A reference to the ftp site for\n the source, that is, to\n .\n ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\n .\n should also be given in the documentation. However, this condition is not\n intended to apply to whole chains of software. If package A includes PCRE,\n it must acknowledge it, but if package B is software that includes package\n A, the condition is not imposed on package B (unless it uses PCRE\n independently).\n .\n 3. Altered versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n .\n 4. If PCRE is embedded in any software that is released under the GNU\n General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\n then the terms of that licence shall supersede any condition above with\n which it is incompatible.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "pcre",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: GNU sed\nSource: ftp://ftp.gnu.org/gnu/sed/\nComment: This is the Debian GNU/Linux prepackaged version of sed.\n It is currently maintained by Clint Adams <clint at debian.org>.\n\nFiles: *\n doc/local.mk\nCopyright: 1989-2020 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: GPL-3+\n GNU sed is free software; you can redistribute it and/or modify it under\n the terms of the GNU General Public License as published by the Free\n Software Foundation; either version 3, or (at your option) any later\n version.\n .\n On Debian GNU/Linux systems you can find a copy of the GPL in\n /usr/share/common-licenses/GPL-3\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\nComment: FSF changes to this file are in the public domain.\n\nFiles: doc/*\nCopyright: 1998-2020 Free Software Foundation, Inc.\nLicense: GFDL-NIV-1.3+\n Permission is granted to copy, distribute and/or modify this\n document under the terms of the GNU Free Documentation License,\n Version 1.3 or any later version published by the Free Software\n Foundation; with no Invariant Sections, no Front-Cover Texts, and\n no Back-Cover Texts. A copy of the license is included in the\n section entitled \"GNU Free Documentation License\".\n .\n On Debian GNU/Linux systems you can find a copy of the GFDL in\n /usr/share/common-licenses/GFDL-1.3\n\nFiles: gnulib-tests/inet_pton.c\nCopyright: (C) 2006, 2008-2020 Free Software Foundation, Inc.\n (c) 1996,1999 by Internet Software Consortium.\nLicense: GPL-3+ and ISC\n\nLicense: ISC\n Permission to use, copy, modify, and distribute this software for any\n purpose with or without fee is hereby granted, provided that the above\n copyright notice and this permission notice appear in all copies.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS\n ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE\n CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL\n DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR\n PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS\n ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS\n SOFTWARE.\n\nFiles: testsuite/bsd.sh\nCopyright: (c) 1992 Diomidis Spinellis.\n (c) 1992, 1993 The Regents of the University of California. All rights reserved.\nLicense: BSD-4-clause-UC\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. <deleted>\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nFiles: testsuite/BOOST.tests\nCopyright: 2004 John Maddock\nComment: Tests taken from BOOST testsuite and adapted to glibc regex.\nLicense: BSL-1\n Boost Software License - Version 1.0 - August 17th, 2003\n .\n Permission is hereby granted, free of charge, to any person or organization\n obtaining a copy of the software and accompanying documentation covered by\n this license (the \"Software\") to use, reproduce, display, distribute,\n execute, and transmit the Software, and to prepare derivative works of the\n Software, and to permit third-parties to whom the Software is furnished to\n do so, all subject to the following:\n .\n The copyright notices in the Software and this entire statement, including\n the above license grant, this restriction and the following disclaimer,\n must be included in all copies of the Software, in whole or in part, and\n all derivative works of the Software, unless such copies or derivative\n works are solely in the form of machine-executable object code generated by\n a source language processor.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\n SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\n FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\nFiles: testsuite/PCRE.tests\nCopyright: 1997-2003 University of Cambridge\nLicense: pcre\n Permission is granted to anyone to use this software for any purpose on any\n computer system, and to redistribute it freely, subject to the following\n restrictions:\n .\n 1. This software is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n .\n 2. The origin of this software must not be misrepresented, either by\n explicit claim or by omission. In practice, this means that if you use\n PCRE in software that you distribute to others, commercially or\n otherwise, you must put a sentence like this\n .\n Regular expression support is provided by the PCRE library package,\n which is open source software, written by Philip Hazel, and copyright\n by the University of Cambridge, England.\n .\n somewhere reasonably visible in your documentation and in any relevant\n files or online help data or similar. A reference to the ftp site for\n the source, that is, to\n .\n ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/\n .\n should also be given in the documentation. However, this condition is not\n intended to apply to whole chains of software. If package A includes PCRE,\n it must acknowledge it, but if package B is software that includes package\n A, the condition is not imposed on package B (unless it uses PCRE\n independently).\n .\n 3. Altered versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n .\n 4. If PCRE is embedded in any software that is released under the GNU\n General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL),\n then the terms of that licence shall supersede any condition above with\n which it is incompatible.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/sed at 4.9-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4774,6 +13734,37 @@
"content": "e0e66f783996ec4670ed5041c446160ec671c723d4be47d3bc27af93c2958a76"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "All-permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: sensible-utils\nSource: https://salsa.debian.org/debian/sensible-utils\n\nFiles: *\nCopyright: 2002-2009, Clint Adams <schizo at debian.org>\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2012, David Pr\u00e9vot <taffit at debian.org>\n 2013, Thorsten Glaser\n 2017, J\u00e9r\u00e9my Bobbio\n 2017, Ximin Luo\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-editor*\nCopyright: 1997, Guy Maor\n 2002, 2004, 2006, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-pager*\nCopyright: 1997, 1998, Guy Maor\n 2004, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-browser*\nCopyright: 2002, Joey Hess\n 2003, 2007, 2008, Clint Adams\n 2007 Jaari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: select-editor*\nCopyright: 2009, Dustin Kirkland <kirkland at canonical.com>.\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\nLicense: GPL-2+\n\nFiles: man/Makefile.am\n man/utf8toman.sed\nCopyright: 2012-2017, Guillaume Jover\nLicense: GPL-2+\nComment: Part of this are copied from dpkg\n\nFiles: man/po4a/cs*\nCopyright: 2012, Michal Simunek\nLicense: GPL-2+\n\nFiles: man/po4a/de*\nCopyright: 2011, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-2+\n\nFiles: man/po4a/fr*\nCopyright: Nicolas Fran\u00e7ois <nicolas.francois at centraliens.net>\n 2017- Bastien Roucari\u00e8s\nLicense: GPL-2+\n\nFiles: man/po4a/es*\nCopyright: 2010-2012, Omar Campagne\nLicense: GPL-2+\n\nFiles: man/po4a/it*\nCopyright: 2012, Beatrice Torracca\nLicense: GPL-2+\n\nFiles: man/po4a/ja*\nCopyright: 2010, Kurasawa Nozomu\nLicense: GPL-2+\n\nFiles: man/po4a/pl*\nCopyright: 2004, 2010, Robert Luberda <robert at debian.org>.\nLicense: GPL-2+\n\nFiles: man/po4a/pt*\nCopyright: 2014, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\nLicense: GPL-2+\n\nFiles: aclocal.m4\nCopyright: 1996-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: *Makefile.in\nCopyright: 1994-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: configure\nCopyright: 1992-1996, 1998-2012, Free Software Foundation, Inc.\nLicense: configure\n This configure script is free software; the Free Software Foundation\n gives unlimited permission to copy, distribute and modify it.\n\nFiles: build-aux/missing\nCopyright: 1996-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/test-driver\nCopyright: 2011-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: installsh\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n FSF changes to this file are in the public domain.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: All-permissive\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n PARTICULAR PURPOSE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "configure",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: sensible-utils\nSource: https://salsa.debian.org/debian/sensible-utils\n\nFiles: *\nCopyright: 2002-2009, Clint Adams <schizo at debian.org>\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2012, David Pr\u00e9vot <taffit at debian.org>\n 2013, Thorsten Glaser\n 2017, J\u00e9r\u00e9my Bobbio\n 2017, Ximin Luo\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-editor*\nCopyright: 1997, Guy Maor\n 2002, 2004, 2006, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-pager*\nCopyright: 1997, 1998, Guy Maor\n 2004, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-browser*\nCopyright: 2002, Joey Hess\n 2003, 2007, 2008, Clint Adams\n 2007 Jaari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: select-editor*\nCopyright: 2009, Dustin Kirkland <kirkland at canonical.com>.\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\nLicense: GPL-2+\n\nFiles: man/Makefile.am\n man/utf8toman.sed\nCopyright: 2012-2017, Guillaume Jover\nLicense: GPL-2+\nComment: Part of this are copied from dpkg\n\nFiles: man/po4a/cs*\nCopyright: 2012, Michal Simunek\nLicense: GPL-2+\n\nFiles: man/po4a/de*\nCopyright: 2011, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-2+\n\nFiles: man/po4a/fr*\nCopyright: Nicolas Fran\u00e7ois <nicolas.francois at centraliens.net>\n 2017- Bastien Roucari\u00e8s\nLicense: GPL-2+\n\nFiles: man/po4a/es*\nCopyright: 2010-2012, Omar Campagne\nLicense: GPL-2+\n\nFiles: man/po4a/it*\nCopyright: 2012, Beatrice Torracca\nLicense: GPL-2+\n\nFiles: man/po4a/ja*\nCopyright: 2010, Kurasawa Nozomu\nLicense: GPL-2+\n\nFiles: man/po4a/pl*\nCopyright: 2004, 2010, Robert Luberda <robert at debian.org>.\nLicense: GPL-2+\n\nFiles: man/po4a/pt*\nCopyright: 2014, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\nLicense: GPL-2+\n\nFiles: aclocal.m4\nCopyright: 1996-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: *Makefile.in\nCopyright: 1994-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: configure\nCopyright: 1992-1996, 1998-2012, Free Software Foundation, Inc.\nLicense: configure\n This configure script is free software; the Free Software Foundation\n gives unlimited permission to copy, distribute and modify it.\n\nFiles: build-aux/missing\nCopyright: 1996-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/test-driver\nCopyright: 2011-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: installsh\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n FSF changes to this file are in the public domain.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: All-permissive\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n PARTICULAR PURPOSE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "installsh",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: sensible-utils\nSource: https://salsa.debian.org/debian/sensible-utils\n\nFiles: *\nCopyright: 2002-2009, Clint Adams <schizo at debian.org>\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2012, David Pr\u00e9vot <taffit at debian.org>\n 2013, Thorsten Glaser\n 2017, J\u00e9r\u00e9my Bobbio\n 2017, Ximin Luo\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-editor*\nCopyright: 1997, Guy Maor\n 2002, 2004, 2006, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-pager*\nCopyright: 1997, 1998, Guy Maor\n 2004, Clint Adams\n 2007 Jari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: sensible-browser*\nCopyright: 2002, Joey Hess\n 2003, 2007, 2008, Clint Adams\n 2007 Jaari Aalto\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\n 2017- Bastien Roucari\u00e8s <rouca at debian.org>\nLicense: GPL-2+\n\nFiles: select-editor*\nCopyright: 2009, Dustin Kirkland <kirkland at canonical.com>.\n 2010- Anibal Monsalve Salazar <anibal at debian.org>\nLicense: GPL-2+\n\nFiles: man/Makefile.am\n man/utf8toman.sed\nCopyright: 2012-2017, Guillaume Jover\nLicense: GPL-2+\nComment: Part of this are copied from dpkg\n\nFiles: man/po4a/cs*\nCopyright: 2012, Michal Simunek\nLicense: GPL-2+\n\nFiles: man/po4a/de*\nCopyright: 2011, Helge Kreutzmann <debian at helgefjell.de>\nLicense: GPL-2+\n\nFiles: man/po4a/fr*\nCopyright: Nicolas Fran\u00e7ois <nicolas.francois at centraliens.net>\n 2017- Bastien Roucari\u00e8s\nLicense: GPL-2+\n\nFiles: man/po4a/es*\nCopyright: 2010-2012, Omar Campagne\nLicense: GPL-2+\n\nFiles: man/po4a/it*\nCopyright: 2012, Beatrice Torracca\nLicense: GPL-2+\n\nFiles: man/po4a/ja*\nCopyright: 2010, Kurasawa Nozomu\nLicense: GPL-2+\n\nFiles: man/po4a/pl*\nCopyright: 2004, 2010, Robert Luberda <robert at debian.org>.\nLicense: GPL-2+\n\nFiles: man/po4a/pt*\nCopyright: 2014, Am\u00e9rico Monteiro <a_monteiro at gmx.com>\nLicense: GPL-2+\n\nFiles: aclocal.m4\nCopyright: 1996-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: *Makefile.in\nCopyright: 1994-2017, Free Software Foundation, Inc.\nLicense: All-permissive\n\nFiles: configure\nCopyright: 1992-1996, 1998-2012, Free Software Foundation, Inc.\nLicense: configure\n This configure script is free software; the Free Software Foundation\n gives unlimited permission to copy, distribute and modify it.\n\nFiles: build-aux/missing\nCopyright: 1996-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/test-driver\nCopyright: 2011-2020, Free Software Foundation, Inc.\nLicense: GPL-2+\n\nFiles: build-aux/install-sh\nCopyright: 1994 X Consortium\nLicense: installsh\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not\n be used in advertising or otherwise to promote the sale, use or other deal-\n ings in this Software without prior written authorization from the X Consor-\n tium.\n .\n FSF changes to this file are in the public domain.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the full text of the GNU General Public\n License version 2 can be found in the file\n `/usr/share/common-licenses/GPL-2'.\n\nLicense: All-permissive\n This file is free software; the Free Software Foundation\n gives unlimited permission to copy and/or distribute it,\n with or without modifications, as long as this notice is preserved.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n PARTICULAR PURPOSE.\n"
+ }
+ }
+ }
+ ],
"purl": "pkg:deb/debian/sensible-utils at 0.0.17+nmu1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4790,6 +13781,38 @@
"content": "481a0b837aa3ce9871773b59755e039c0fd15a801f84ce4e607b54596480f875"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/systemd at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4806,6 +13829,38 @@
"content": "fff5012ff0022b485b039e5849ae8dbcdeff19d93c2aca842865b3293af0fb53"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/systemd-sysv at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4822,6 +13877,26 @@
"content": "11790842108768ec52432ea22e7b4f057232813b7c27ef6dfe1aba776a5cb90e"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: sysvinit\nUpstream-Contact: sysvinit-devel at nongnu.org\nSource: https://download.savannah.gnu.org/releases/sysvinit/\n\nFiles: *\nCopyright: 1989, 1991 Free Software Foundation, Inc.\n 1997-2005 Miquel van Smoorenburg <miquels at cistron.nl>\n 1998 Danek Duvall\n 2003 Theodore Ts'o\n 2009, 2011, 2012 the sysvinit's copyright holder\n 2010 Michael Krapp\n 2011 SuSE LINUX Products GmbH\n 2017-2019 Jesse Smith\nLicense: GPL-2.0+\n\nFiles: debian/*\nCopyright: 1996-2004 Miquel van Smoorenburg <miquels at cistron.nl>\n 2005-2010, 2014 Petter Reinholdtsen <pere at debian.org>\n 2006 Henrique de Moraes Holschuh <hmh at debian.org>\n 2006 Thomas Hood <jdthood at yahoo.co.uk>\n 2006-2007 Steinar H. Gunderson <sesse at debian.org>\n 2009 Software in the Public Interest\n 2009 Hideki Yamane <henrich at debian.or.jp>\n 2009 Free Software Foundation, Inc.\n 2009 Clytie Siddall <clytie at riverland.net.au>\n 2009-2020 Adriano Rafael Gomes <adrianorg at debian.org>\n 2010-2012 Christian Perrier <bubulle at debian.org>\n 2010-2019 Joe Hansen <joedalton2 at yahoo.dk>\n 2011, 2016 Ben Hutchings <ben at decadent.org.uk>\n 2011-2013 Roger Leigh <rleigh at debian.org>\n 2012 Martin Bagge <brother at bsnet.se>\n 2012 Debian French l10n Team\n 2012-2013 Steve Langasek <vorlon at debian.org>\n 2014 Robert Millan <rmh at debian.org>\n 2014 Thomas Goirand <zigo at debian.org>\n 2014-2018 Michael Biebl <biebl at debian.org>\n 2015 Adam Conrad <adconrad at debian.org>\n 2015-2016 Andreas Henriksson <andreas at fatal.se>\n 2015-2016 Martin Pitt <mpitt at debian.org>\n 2017 Ian Jackson <ijackson at chiark.greenend.org.uk>\n 2018 Dmitry Bogatov <KAction at gnu.org>\n 2018 Vincenzo (KatolaZ) Nicosia <katolaz at freaknet.org>\n 2021 Mark Hindley <leepen at debian.org>\nLicense: GPL-2.0+\n\nFiles: contrib/sysd2v.sh\nCopyright: 2019 Trek http://www.trek.eu.org/devel/sysd2v\nLicense: GPL-3.0\n\nFiles: doc/Install\n man/fstab-decode.8\n man/initctl.5\n src/fstab-decode.c\n src/runlevellog.h\n src/runlevellog.c\nCopyright: 2006 Red Hat, Inc.\n 2018 Jesse Smith\nLicense: GPL-2.0\n\nLicense: GPL-2.0+\n This program 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 of the License, or (at your option) any later version.\n .\n This program 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.\n .\n You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems you can find a local copy of the GNU General Public License\n in /usr/share/common-licenses/GPL-2.\n\nLicense: GPL-3.0\n This program 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, version 3.\n .\n This program 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.\n .\n You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems you can find a local copy of the GNU General Public License\n in /usr/share/common-licenses/GPL-3.\n\nLicense: GPL-2.0\n This program 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; version 2.\n .\n This program 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.\n .\n You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems you can find a local copy of the GNU General Public License\n in /usr/share/common-licenses/GPL-2.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/sysvinit-utils at 3.06-4?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4838,6 +13913,28 @@
"content": "24fb92e98c2969171f81a8b589263d705f6b1670f95d121cd74c810d4605acc3"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-3.0-or-later WITH Bison-exception-2.2"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/tar at 1.34+dfsg-1.2+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4854,6 +13951,13 @@
"content": "618679dfc90630dd0605f0079ddebd9a06a090913566f1063326e3ad21c7c55d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/tasksel at 3.73?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4870,6 +13974,13 @@
"content": "0016fb47a32ff54f9ade80d07e76e2524888f6df17916aad4318087cb3321521"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/tasksel-data at 3.73?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4886,6 +13997,13 @@
"content": "0ca0baec1fca55df56039047a631fc1541c5a44c1c4879d553aaa3a70844eb12"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/tzdata at 2024a-0+deb12u1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4902,6 +14020,38 @@
"content": "65e8708dc4d310afb1392266db33eff990eb5cc6cd590aaf0cf759b77d903758"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-2.0-only WITH Linux-syscall-note exception"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/udev at 252.26-1~deb12u2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4918,6 +14068,13 @@
"content": "908b80730d99afe6f59ed7f449827b7047ceeeaa7637c368c03e4912e0a6de99"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/usr-is-merged at 37~deb12u1?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4934,6 +14091,71 @@
"content": "cc96c6e07db33c0422ff8945e13c004489c979f5e070daa67b9c6c219b22d980"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/util-linux at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4950,6 +14172,71 @@
"content": "45b08b5e928ceb229721ba13b4d8e7559957222d8c35b43b6413b81d9c2d06f8"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-4-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "BSLA",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: util-linux\nUpstream-Contact: util-linux at vger.kernel.org\nSource: https://www.kernel.org/pub/linux/utils/util-linux/\n\nFiles: *\nCopyright: Michal Luscon <mluscon at redhat.com>\n 1986 Gary S. Brown\n 1990 Gordon Irlam (gordoni at cs.ua.oz.au)\n 1991, 1992 Linus Torvalds\n 1991-2004 Miquel van Smoorenburg\n 1992 A. V. Le Blanc (LeBlanc at mcc.ac.uk)\n 1992-1997 Michael K. Johnson, johnsonm at redhat.com\n 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n 2003, 2004, 2005, 2008 Theodore Ts'o <tytso at mit.edu>\n 1994 Kevin E. Martin (martin at cs.unc.edu)\n 1994 Salvatore Valente <svalente at mit.edu>\n 1994,1996 Alessandro Rubini (rubini at ipvvis.unipv.it)\n 1994-2005 Jeff Tranter (tranter at pobox.com)\n 1995, 1999, 2000 Andries E. Brouwer <aeb at cwi.nl>\n 1997-2005 Frodo Looijaard <frodo at frodo.looijaard.name>\n 1998 Danek Duvall <duvall at alumni.princeton.edu>\n 1999 Andreas Dilger\n 1999-2002 Transmeta Corporation\n 1999, 2000, 2002-2009, 2010, 2011, 2012, 2014 Red Hat, Inc.\n 2000 Werner Almesberger\n 2004-2006 Michael Holzt, kju -at- fqdn.org\n 2005 Adrian Bunk\n 2007-2020 Karel Zak <kzak at redhat.com>\n 2007, 2011, 2012, 2016 SuSE LINUX Products GmbH\n 2008 Cai Qian <qcai at redhat.com>\n 2008 Hayden A. James (hayden.james at gmail.com)\n 2008 James Youngman <jay at gnu.org>\n 2008 Roy Peled, the.roy.peled -at- gmail.com\n 2009 Mikhail Gusarov <dottedmag at dottedmag.net>\n 2010, 2011, 2012 Davidlohr Bueso <dave at gnu.org>\n 2010 Jason Borden <jborden at bluehost.com>A\n 2010 Hajime Taira <htaira at redhat.com>\n 2010 Masatake Yamato <yamato at redhat.com>\n 2011 IBM Corp.\n 2012 Andy Lutomirski <luto at amacapital.net>\n 2012 Lennart Poettering\n 2012 Sami Kerola <kerolasa at iki.fi>\n 2012 Cody Maloney <cmaloney at theoreticalchaos.com>\n 2012 Werner Fink <werner at suse.de>\n 2013,2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: GPL-2+\n\nFiles: schedutils/ionice.c\nCopyright: 2005 Jens Axboe <jens at axboe.dk>\nLicense: GPL-2\n\nFiles: schedutils/chrt.c\n schedutils/taskset.c\nCopyright: 2004 Robert Love <rml at tech9.net>\n 2010 Karel Zak <kzak at redhat.com>\nLicense: GPL-2\n\nFiles: disk-utils/raw.c\nCopyright: 1999, 2000, Red Hat Software\nLicense: GPL-2\n\nFiles: sys-utils/hwclock-parse-date.y\nCopyright: Steven M. Bellovin <smb at research.att.com>\n Unknown Authors on Usenet\n 1990 Rich $alz <rsalz at bbn.com>\n 1990 Jim Berets <jberets at bbn.com>\n 1999, 2004 Paul Eggert <eggert at twinsun.com>\nLicense: GPL-3+\n\nFiles: sys-utils/nsenter.c\nCopyright: 2012-2013 Eric Biederman <ebiederm at xmission.com>\nLicense: GPL-2\n\nFiles: disk-utils/mkfs.minix.c\n disk-utils/mkswap.c\nCopyright: 1991, 1992 Linus Torvalds\nLicense: GPL-2\n\nFiles: lib/blkdev.c\n lib/loopdev.c\n lib/sysfs.c\n lib/ttyutils.c\n misc-utils/mcookie.c\n sys-utils/setsid.c\n text-utils/line.c\nCopyright: n/a\nLicense: public-domain\n\nFiles: login-utils/vipw.c\n misc-utils/cal.c\n misc-utils/kill.c\n misc-utils/logger.c\n misc-utils/look.c\n misc-utils/whereis.c\n sys-utils/renice.c\n term-utils/mesg.c\n term-utils/script.c\n term-utils/ttymsg.c\n term-utils/wall.c\n term-utils/write.c\n text-utils/col.c\n text-utils/colcrt.c\n text-utils/colrm.c\n text-utils/column.c\n text-utils/hexdump.c\n text-utils/hexdump.h\n text-utils/hexdump-conv.c\n text-utils/hexdump-display.c\n text-utils/hexdump-parse.c\n text-utils/rev.c\n text-utils/ul.c\nCopyright: 1980, 1983, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n The Regents of the University of California\n 2014 Sami Kerola <kerolasa at iki.fi>\n 2014 Karel Zak <kzak at redhat.com>\nLicense: BSD-4-clause\n\nFiles: sys-utils/flock.c\nCopyright: 2003-2005 H. Peter Anvin\nLicense: MIT\n\nFiles: text-utils/pg.c\nCopyright: 2000-2001 Gunnar Ritter\nLicense: BSD-3-clause\n\nFiles: login-utils/login.c\nCopyright: 1980, 1987, 1988 The Regents of the University of California.\n 2011 Karel Zak <kzak at redhat.com>\nLicense: BSLA\n\nFiles: login-utils/logindefs.c\nCopyright: 2003, 2004, 2005 Thorsten Kukuk\nLicense: BSD-3-clause\n\nFiles: libuuid/*\n libuuid/src/*\n libuuid/man/*\nCopyright: 1996, 1997, 1998, 1999, 2007 Theodore Ts'o.\n 1999 Andreas Dilger (adilger at enel.ucalgary.ca)\nLicense: BSD-3-clause\n\nFiles: lib/procutils.c\n include/xalloc.h\nCopyright: 2010, 2011 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2+\n\nFiles: */colors.*\nCopyright: 2012 Ondrej Oprala <ooprala at redhat.com>\n 2012-2014 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2+\n\nFiles: login-utils/setpwnam.h\n login-utils/setpwnam.c\nCopyright: 1994 Martin Schulze <joey at infodrom.north.de>\n 1994 Salvatore Valente <svalente at mit.edu>\nLicense: LGPL-2+\n\nFiles: libfdisk/*\n libfdisk/src/*\nCopyright: 2007-2013 Karel Zak <kzak at redhat.com>\n 2012 Davidlohr Bueso <dave at gnu.org>\nLicense: LGPL-2.1+\n\nFiles: lib/cpuset.c\n */match.*\n lib/canonicalize.c\nCopyright: 2008-2009, 2010, 2011, 2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */mbsalign.*\nCopyright: 2009-2010 Free Software Foundation, Inc.\n 2010-2013 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: */timeutils.*\nCopyright: 2010 Lennart Poettering\nLicense: LGPL-2.1+\n\nFiles: include/list.h\nCopyright: 2008 Karel Zak <kzak at redhat.com>\n 1999-2008 by Theodore Ts'o\nLicense: LGPL\n\nFiles: libblkid/*\n libblkid/src/*\n libblkid/samples/*\n libblkid/src/partitions/*\n libblkid/src/superblocks/*\n libblkid/src/topology/*\nCopyright: 1999, 2001 Andries Brouwer\n 1995, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004\n Theodore Ts'o.\n 2001 Andreas Dilger (adilger at turbolinux.com)\n 2004-2008 Kay Sievers <kay.sievers at vrfy.org>\n 2008-2013 Karel Zak <kzak at redhat.com>\n 2009 Bastian Friedrich <bastian.friedrich at collax.com>\n 2009 Corentin Chary <corentincj at iksaif.net>\n 2009 Mike Hommey <mh at glandium.org>\n 2009 Red Hat, Inc.\n 2009-2010 Andreas Dilger <adilger at sun.com>\n 2010 Andrew Nayenko <resver at gmail.com>\n 2010 Jeroen Oortwijn <oortwijn at gmail.com>\n 2010 Jiro SEKIBA <jir at unicus.jp>\n 2011 Philipp Marek <philipp.marek at linbit.com>\n 2012 Milan Broz <mbroz at redhat.com>\n 2013 Alejandro Martinez Ruiz <alex at nowcomputing.com>\n 2013 Eric Sandeen <sandeen at redhat.com>\n 2013 Rolf Fokkens <rolf at fokkens.nl>\n 2013 Zeeshan Ali (Khattak) <zeeshanak at gnome.org>\nLicense: LGPL-2.1+\n\nFiles: include/cpuset.h\n lib/randutils.c\nCopyright: *unknown*\nLicense: LGPL\n\nFiles: misc-utils/blkid.c\nCopyright: 2001 Andreas Dilger\nLicense: LGPL\n\nFiles: libmount/*\n libmount/src/*\nCopyright: 2008-2012 Karel Zak <kzak at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: libmount/python/*\nCopyright: 2013, Red Hat, Inc.\nLicense: LGPL-3+\n\nFiles: libsmartcols/*\nCopyright: 2009-2014 Karel Zak <kzak at redhat.com>\n 2014 Ondrej Oprala <ooprala at redhat.com>\nLicense: LGPL-2.1+\n\nFiles: debian/*\nCopyright: Guy Maor <maor at debian.org>\n Sean 'Shaleh' Perry <shaleh at debian.org>\n Adrian Bunk <bunk at stusta.de>\n LaMont Jones <lamont at debian.org>\n 1996-2003 Martin Mitchell (martin at debian.org)\n 2008-2012 Frank Lichtenheld (djpig at debian.org)\n 2014 Andreas Henriksson <andreas at fatal.se>\n 2017-2020 Michael Biebl <biebl at debian.org>\n 2019 Petter Reinholdtsen <pere at debian.org>\n 2017-2020 Chris Hofstaedtler <zeha at debian.org>\nLicense: GPL-2+\n\nFiles: debian/po/*\nCopyright: Aiet Kolkhi <aietkolkhi at gmail.com>\n Anton Gladky <gladky.anton at gmail.com>\n Arief S F (arief at gurame.fisika.ui.ac.id>\n Armin Be\u0161irovi\u0107 <armin at linux.org.ba>\n astur <malditoastur at gmail.com>\n Axel Bojer <axelb at skolelinux.no>\n Bart Cornelis <cobaco at skolelinux.no>\n Bartosz Fe\ufffdski <fenio at o2.pl>\n Basil Shubin <bashu at surgut.ru>\n Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n Bjorn Steensrud <bjornst at powertech.no>\n Claus Hindsgaul <claus_h at image.dk>\n Clytie Siddall <clytie at riverland.net.au>\n Dafydd Tomos <l10n at da.fydd.org>\n Damyan Ivanov <dam at modsoftsys.com>\n Daniel Franganillo <dfranganillo at gmail.com>\n Daniel Nylander <po at danielnylander.se>\n Danishka Navin <danishka at gmail.com>\n Dauren Sarsenov <daur88 at inbox.ru>\n Dominik Zablotny <dominz at wp.pl>\n Dr.T.Vasudevan <agnihot3 at gmail.com>\n Eddy Petrisor <eddy.petrisor at gmail.com>\n Eder L. Marques <frolic at debian-ce.org>\n Elian Myftiu <elian.myftiu at gmail.com>\n Emmanuel Galatoulas <galas at tee.gr>\n Esko Araj\u00e4rvi <edu at iki.fi>\n Frank Lichtenheld <djpig at debian.org>\n Fr\u00e9d\u00e9ric Bothamy <frederic.bothamy at free.fr>\n Gabor Burjan <buga at buvoshetes.hu>\n George Papamichelakis <george at step.gr>\n Hans Fredrik Nordhaug <hans at nordhaug.priv.no>\n H\u00e5vard Korsvoll <korsvoll at gmail.com>\n Hideki Yamane <henrich at samba.gr.jp>\n Hleb Rubanau <g.rubanau at gmail.com>\n I Gede Wijaya S <gwijayas at yahoo.com>\n Ivan Mas\u00e1r <helix84 at centrum.sk>\n Jacobo Tarrio <jtarrio at debian.org>\n Jamil Ahmed <jamil at ankur.org.bd>\n Janos Guljas <janos at resenje.org>\n Jordi Mallach <jordi at debian.org>\n Josip Rodin <joy+ditrans at linux.hr>\n Karolina Kalic <karolina at resenje.org>\n Kartik Mistry <kartik.mistry at gmail.com>\n K\u0119stutis Bili\u016bnas <kebil at kaunas.init.lt>\n Kevin Scannell <kscanne at gmail.com>\n Khoem Sokhem <khoemsokhem at khmeros.info>\n Klaus Ade Johnstad <klaus at skolelinux.no>\n Knut Yrvin <knuty at skolelinux.no>\n Konstantinos Margaritis <markos at debian.org>\n Kostas Papadimas <pkst at gnome.org>\n Kumar Appaiah <a.kumar at alumni.iitm.ac.in>\n Lior Kaplan <kaplan at debian.org>\n Luiz Portella <lfpor at lujz.org>\n Mallikarjuna <Mallikarjunasj at gmail.com>\n Mert Dirik <mertdirik at gmail.com>\n Milo Casagrande <milo at ubuntu.com>\n Ming Hua <minghua at ubuntu.com>\n Miroslav Kure <kurem at debian.cz>\n Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n Nabin Gautam <nabin at mpp.org.np>\n Ossama M. Khayat <okhayat at yahoo.com>\n Ovidiu Damian <deelerious at gmail.com>\n Parlin Imanuel Toh <parlin_i at yahoo.com>\n Pavel Piatruk <berserker at neolocation.com>\n Piarres Beobide <pi at beobide.net>\n Praveen|\u0d2a\u0d4d\u0d30\u0d35\u0d40\u0d23\u0d4d\u200d A|\u0d0e <pravi.a at gmail.com>\n R\u016bdolfs Mazurs <rudolfs.mazurs at gmail.com>\n Sahran <Sahran.ug at gmail.com>\n Sampada Nakhare <sampadanakhare at gmail.com>\n Setyo Nugroho <setyo at gmx.net>\n Sim\u00e3o Pedro Cardoso <pthell at gmail.com>\n Stefano Melchior <stefano.melchior at openlabs.it>\n Sunjae Park <darehanl at gmail.com>\n Sveinn \u00ed Felli <sveinki at nett.is>\n Tetralet <tetralet at gmail.com>\n Theppitak Karoonboonyanan <thep at linux.thai.net>\n Tshewang Norbu <bumthap2006 at hotmail.com>\n Vahid Ghaderi <vahid_male1384 at yahoo.com>\n Vanja Cvelbar <cvelbar at gmail.com>\n Veeven <veeven at gmail.com>\n Vikram Vincent <vincentvikram at gmail.com>\n Yoppy Hidayanto <yoppy.hidayanto at gmail.com>\nLicense: GPL-2+\n\n\nLicense: public-domain\n The files tagged with this license contains the following paragraphs:\n .\n No copyright is claimed. This code is in the public domain; do with\n it what you wish.\n .\n Written by Karel Zak <kzak at redhat.com>\n\nLicense: GPL-2\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License, v2, as\n published by the Free Software Foundation\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 2 can be found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public\n License version 3 can be found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1) Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n .\n 2) Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n 3) Neither the name of the ORGANIZATION nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-4-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. All advertising materials mentioning features or use of this software\n must display the following acknowledgement:\n This product includes software developed by the University of\n California, Berkeley and its contributors.\n 4. Neither the name of the University nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n SUCH DAMAGE.\n\nLicense: BSLA\n Redistribution and use in source and binary forms are permitted\n provided that the above copyright notice and this paragraph are\n duplicated in all such forms and that any documentation,\n advertising materials, and other materials related to such\n distribution and use acknowledge that the software was developed\n by the University of California, Berkeley. The name of the\n University may not be used to endorse or promote products derived\n from this software without specific prior written permission.\n THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\n IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL\n This file may be redistributed under the terms of the\n GNU Lesser General Public License.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License can be found in \u2018/usr/share/common-licenses/LGPL\u2019.\n\nLicense: LGPL-2+\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 2 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n The complete text of the GNU Lesser General Public License\n can be found in /usr/share/common-licenses/LGPL-2 file.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 2.1, or (at your option)\n any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License along\n with this program; if not, write to the Free Software Foundation,\n Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public\n License version 2.1 can be found in \u2018/usr/share/common-licenses/LGPL-2.1\u2019.\n\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 3 of the License, or (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License can be found in \"/usr/share/common-licenses/LGPL-3\".\n\nLicense: MIT\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation files\n (the \"Software\"), to deal in the Software without restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/util-linux-extra at 2.38.1-5+deb12u1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4966,6 +14253,141 @@
"content": "82f4d33e2f0ded27ad1145a726cbc44ed0e2413becda3632a932e902b3df976b"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Vim"
+ }
+ },
+ {
+ "license": {
+ "name": "OPL-1+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache OR MIT",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Vim-Regexp",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "UC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "name": "Compaq",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR Vim",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "XPM",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "EDL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Apache",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/vim-common at 2:9.0.1378-2?arch=all&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4982,6 +14404,141 @@
"content": "3fe784f4d5ec8a4b4b7101dea351778b7393a6a7cebf4a19e5349c6706c7e69b"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Vim"
+ }
+ },
+ {
+ "license": {
+ "name": "OPL-1+",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-3-Clause"
+ }
+ },
+ {
+ "license": {
+ "id": "MIT"
+ }
+ },
+ {
+ "license": {
+ "id": "BSD-2-Clause"
+ }
+ },
+ {
+ "license": {
+ "name": "Apache OR MIT",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "GPL-1.0+ OR Artistic-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Vim-Regexp",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "UC",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "CC0-1.0"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR GPL-2.0-only",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "X11"
+ }
+ },
+ {
+ "license": {
+ "name": "Compaq",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "MIT OR Vim",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "XPM",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "EDL-1",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "Apache",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: vim\nSource: https://github.com/vim/vim\n\nFiles: *\nCopyright: 2001-2022 Bram Moolenaar <Bram at vim.org>\n 2006 Benji Fisher <benji at member.ams.org>\n 1999-2021 Charles E. Campbell, Jr. <drchip at campbellfamily.biz>\n 2003 Fred Barnes\n 2003 Mario Schweigler\n 2004-2008 Michael Geddes\n 2006 Martin Krischik\n 2015 Christian Brabandt\n 2014 David Necas (Yeti)\n 2009-2013 Steven Oliver\n 2012 Hong Xu\n 2001-2022 MURAOKA Taro <koron.kaoriya at gmail.com>\n 2001 Bohdan Vlasyuk <bohdan at vstu.edu.ua>\n 2003-2022 Ernest Adrogu\u00e9 <eadrogue at gmx.net>\n 2005,2006,2008,2010 Kevin Patrick Scannell <kscanne at gmail.com>\n 1997 Olaf Seibert\n 2002 E. I. DuPont de Nemours and Company, Inc\n Pablo Ariel Kohan\n 2017 Eugene Ciurana\n 2017 Ken Takata\n 2019 Agilent Technologies, Inc.\nLicense: Vim\n\nFiles: runtime/doc/*\nCopyright: 1988-2003 Bram Moolenaar <Bram at vim.org>\nLicense: OPL-1+\nComment: No license options are exercised. See https://bugs.debian.org/384019\n for discussions confirming DFSG-ness of this license when no options are\n exercised.\n\nFiles:\n runtime/indent/cmake.vim\n runtime/indent/elm.vim\n runtime/syntax/cmake.vim\n runtime/syntax/elm.vim\n runtime/syntax/go.vim\n runtime/syntax/proto.vim\n runtime/syntax/tpp.vim\nCopyright: Andy Cedilnik <andy.cedilnik at kitware.com>\n Karthik Krishnan <kartik.krishnan at kitware.com>\n Dimitri Merejkowsky <d.merej at gmail.com>\n Gerfried Fuchs <alfie at ist.org>\n Joseph Hager <ajhager at gmail.com>\n 2008 Google Inc.\n 2009 The Go Authors\nLicense: BSD-3-clause\n\nFiles:\n runtime/ftplugin/jsonc.vim\n runtime/ftplugin/julia.vim\n runtime/ftplugin/wast.vim\n runtime/indent/julia.vim\n runtime/indent/wast.vim\n runtime/syntax/bitbake.vim\n runtime/syntax/json.vim\n runtime/syntax/jsonc.vim\n runtime/syntax/julia.vim\n runtime/syntax/nix.vim\n runtime/syntax/wast.vim\nCopyright:\n 2013 Jeroen Ruigrok van der Werven, Eli Parra\n 2016 rhysd\n 2021 Izhak Jakov\n 2012-2016 Carlo Baldassi\n 2004 Chris Larson\n 2008 Ricardo Salveti\n 2022 Daiderd Jordan\n 2022 James Fleming\nLicense: Expat\n\nFiles: runtime/syntax/tmux.vim\nCopyright: Eric Pruitt <eric.pruitt at gmail.com>\nLicense: BSD-2-clause\n\nFiles: runtime/syntax/rust.vim\n runtime/autoload/rust.vim\n runtime/autoload/rustfmt.vim\n runtime/ftplugin/rust.vim\n runtime/indent/rust.vim\n runtime/compiler/cargo.vim\nCopyright: 2015 The Rust Project Developers\nLicense: Apache or Expat\n\nFiles: runtime/tools/efm_perl.pl\nCopyright: 2001 Joerg Ziefle <joerg.ziefle at gmx.de>\nLicense: GPL-1+ or Artistic-1\n\nFiles: src/libvterm/*\nCopyright: 2008 Paul Evans <leonerd at leonerd.org.uk>\nLicense: Expat\n\nFiles: src/regexp_bt.c\nCopyright: 1986 University of Toronto\nLicense: Vim-Regexp\n\nFiles: src/if_xcmdsrv.c\nCopyright: Copyright (c) 1989-1993 The Regents of the University of California.\nLicense: UC\n\nFiles: src/tee/tee.c\nCopyright: 1996, Paul Slootman\nLicense: public-domain\n\nFiles: src/xxd/*\nCopyright: 1990-1998 by Juergen Weigert (jnweiger at informatik.uni-erlangen.de)\nLicense: Expat or GPL-2\n\nFiles: src/install-sh\nCopyright: 1987, 1988, 1994 X Consortium\nLicense: X11\n\nFiles: src/gui_gtk_vms.h\nCopyright: 2000 Compaq Computer Corporation\nLicense: Compaq\n\nFiles: src/pty.c\nCopyright: 1993 Juergen Weigert (jnweiger at immd4.informatik.uni-erlangen.de)\n 1993 Michael Schroeder (mlschroe at immd4.informatik.uni-erlangen.de)\n 1987 Oliver Laumann\nLicense: GPL-2+\n\nFiles: src/iscygpty.*\nCopyright: 2015-2017 K.Takata\nLicense: Expat or Vim\n\nFiles: src/xpm/*\nCopyright: 1989-95 GROUPE BULL\nLicense: XPM\n\nFiles: src/xdiff/*\nCopyright: 2003-2016 Davide Libenzi, Johannes E. Schindelin\nLicense: LGPL-2.1+\n\nFiles: src/xdiff/xhistogram.c\nCopyright: 2010 Google Inc. and other copyright owners as documented in JGit's IP log\nLicense: EDL-1\n\nFiles:\n runtime/compiler/powershell.vim\n runtime/doc/ft_ps1.txt\n runtime/ftplugin/ps1.vim\n runtime/ftplugin/ps1xml.vim\n runtime/ftplugin/swift.vim\n runtime/ftplugin/swiftgyb.vim\n runtime/indent/ps1.vim\n runtime/syntax/ps1.vim\n runtime/syntax/ps1xml.vim\n runtime/syntax/sil.vim\n runtime/syntax/swift.vim\n runtime/syntax/swiftgyb.vim\nCopyright:\n 2014-2020 Apple Inc. and the Swift project authors\n 2005-2021 Peter Provost\nLicense: Apache\n\nFiles: runtime/syntax/poke.vim\nCopyright: 2021 Matthew T. Ihlenfield\nLicense: GPL-3+\n\nLicense: Vim\n I) There are no restrictions on distributing unmodified copies of Vim except\n that they must include this license text. You can also distribute\n unmodified parts of Vim, likewise unrestricted except that they must\n include this license text. You are also allowed to include executables\n that you made from the unmodified Vim sources, plus your own usage\n examples and Vim scripts.\n .\n II) It is allowed to distribute a modified (or extended) version of Vim,\n including executables and/or source code, when the following four\n conditions are met:\n 1) This license text must be included unmodified.\n 2) The modified Vim must be distributed in one of the following five ways:\n a) If you make changes to Vim yourself, you must clearly describe in\n the distribution how to contact you. When the maintainer asks you\n (in any way) for a copy of the modified Vim you distributed, you\n must make your changes, including source code, available to the\n maintainer without fee. The maintainer reserves the right to\n include your changes in the official version of Vim. What the\n maintainer will do with your changes and under what license they\n will be distributed is negotiable. If there has been no negotiation\n then this license, or a later version, also applies to your changes.\n The current maintainer is Bram Moolenaar <Bram at vim.org>. If this\n changes it will be announced in appropriate places (most likely\n vim.sf.net, www.vim.org and/or comp.editors). When it is completely\n impossible to contact the maintainer, the obligation to send him\n your changes ceases. Once the maintainer has confirmed that he has\n received your changes they will not have to be sent again.\n b) If you have received a modified Vim that was distributed as\n mentioned under a) you are allowed to further distribute it\n unmodified, as mentioned at I). If you make additional changes the\n text under a) applies to those changes.\n c) Provide all the changes, including source code, with every copy of\n the modified Vim you distribute. This may be done in the form of a\n context diff. You can choose what license to use for new code you\n add. The changes and their license must not restrict others from\n making their own changes to the official version of Vim.\n d) When you have a modified Vim which includes changes as mentioned\n under c), you can distribute it without the source code for the\n changes if the following three conditions are met:\n - The license that applies to the changes permits you to distribute\n the changes to the Vim maintainer without fee or restriction, and\n permits the Vim maintainer to include the changes in the official\n version of Vim without fee or restriction.\n - You keep the changes for at least three years after last\n distributing the corresponding modified Vim. When the maintainer\n or someone who you distributed the modified Vim to asks you (in\n any way) for the changes within this period, you must make them\n available to him.\n - You clearly describe in the distribution how to contact you. This\n contact information must remain valid for at least three years\n after last distributing the corresponding modified Vim, or as long\n as possible.\n e) When the GNU General Public License (GPL) applies to the changes,\n you can distribute the modified Vim under the GNU GPL version 2 or\n any later version.\n 3) A message must be added, at least in the output of the \":version\"\n command and in the intro screen, such that the user of the modified Vim\n is able to see that it was modified. When distributing as mentioned\n under 2)e) adding the message is only required for as far as this does\n not conflict with the license used for the changes.\n 4) The contact information as required under 2)a) and 2)d) must not be\n removed or changed, except that the person himself can make\n corrections.\n .\n III) If you distribute a modified version of Vim, you are encouraged to use\n the Vim license for your changes and make them available to the\n maintainer, including the source code. The preferred way to do this is\n by e-mail or by uploading the files to a server and e-mailing the URL.\n If the number of changes is small (e.g., a modified Makefile) e-mailing a\n context diff will do. The e-mail address to be used is\n <maintainer at vim.org>\n .\n IV) It is not allowed to remove this license from the distribution of the Vim\n sources, parts of it or from a modified version. You may use this\n license for previous Vim releases instead of the license that they came\n with, at your option.\n\nLicense: OPL-1+\n I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\n .\n The Open Publication works may be reproduced and distributed in whole or in\n part, in any medium physical or electronic, provided that the terms of this\n license are adhered to, and that this license or an incorporation of it by\n reference (with any options elected by the author(s) and/or publisher) is\n displayed in the reproduction.\n .\n Proper form for an incorporation by reference is as follows:\n .\n Copyright (c) <year> by <author's name or designee>. This material may be\n distributed only subject to the terms and conditions set forth in the Open\n Publication License, vX.Y or later (the latest version is presently\n available at http://www.opencontent.org/openpub/).\n .\n The reference must be immediately followed with any options elected by the\n author(s) and/or publisher of the document (see section VI).\n .\n Commercial redistribution of Open Publication-licensed material is permitted.\n .\n Any publication in standard (paper) book form shall require the citation of the\n original publisher and author. The publisher and author's names shall appear on\n all outer surfaces of the book. On all outer surfaces of the book the original\n publisher's name shall be as large as the title of the work and cited as\n possessive with respect to the title.\n .\n .\n II. COPYRIGHT\n .\n The copyright to each Open Publication is owned by its author(s) or designee.\n .\n .\n III. SCOPE OF LICENSE\n .\n The following license terms apply to all Open Publication works, unless\n otherwise explicitly stated in the document.\n .\n Mere aggregation of Open Publication works or a portion of an Open Publication\n work with other works or programs on the same media shall not cause this\n license to apply to those other works. The aggregate work shall contain a\n notice specifying the inclusion of the Open Publication material and\n appropriate copyright notice.\n .\n SEVERABILITY. If any part of this license is found to be unenforceable in any\n jurisdiction, the remaining portions of the license remain in force.\n .\n NO WARRANTY. Open Publication works are licensed and provided \"as is\" without\n warranty of any kind, express or implied, including, but not limited to, the\n implied warranties of merchantability and fitness for a particular purpose or a\n warranty of non-infringement.\n .\n .\n IV. REQUIREMENTS ON MODIFIED WORKS\n .\n All modified versions of documents covered by this license, including\n translations, anthologies, compilations and partial documents, must meet the\n following requirements:\n .\n 1. The modified version must be labeled as such.\n 2. The person making the modifications must be identified and the\n modifications dated.\n 3. Acknowledgement of the original author and publisher if applicable must\n be retained according to normal academic citation practices.\n 4. The location of the original unmodified document must be identified.\n 5. The original author's (or authors') name(s) may not be used to assert or\n imply endorsement of the resulting document without the original author's\n (or authors') permission.\n .\n .\n V. GOOD-PRACTICE RECOMMENDATIONS\n .\n In addition to the requirements of this license, it is requested from and\n strongly recommended of redistributors that:\n .\n 1. If you are distributing Open Publication works on hardcopy or CD-ROM, you\n provide email notification to the authors of your intent to redistribute\n at least thirty days before your manuscript or media freeze, to give the\n authors time to provide updated documents. This notification should\n describe modifications, if any, made to the document.\n 2. All substantive modifications (including deletions) be either clearly\n marked up in the document or else described in an attachment to the\n document.\n 3. Finally, while it is not mandatory under this license, it is considered\n good form to offer a free copy of any hardcopy and CD-ROM expression of\n an Open Publication-licensed work to its author(s).\n .\n .\n VI. LICENSE OPTIONS\n .\n The author(s) and/or publisher of an Open Publication-licensed document may\n elect certain options by appending language to the reference to or copy of the\n license. These options are considered part of the license instance and must be\n included with the license (or its incorporation by reference) in derived works.\n .\n A. To prohibit distribution of substantively modified versions without the\n explicit permission of the author(s). \"Substantive modification\" is defined as\n a change to the semantic content of the document, and excludes mere changes in\n format or typographical corrections.\n .\n To accomplish this, add the phrase `Distribution of substantively modified\n versions of this document is prohibited without the explicit permission of the\n copyright holder.' to the license reference or copy.\n .\n B. To prohibit any publication of this work or derivative works in whole or in\n part in standard (paper) book form for commercial purposes is prohibited unless\n prior permission is obtained from the copyright holder.\n .\n To accomplish this, add the phrase 'Distribution of the work or derivative of\n the work in any standard (paper) book form is prohibited unless prior\n permission is obtained from the copyright holder.' to the license reference or\n copy.\n\nLicense: GPL-2\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-2+\n On Debian systems, the complete text of the GPL version 2 license can be\n found in `/usr/share/common-licenses/GPL-2'.\n\nLicense: GPL-3+\n On Debian systems, the complete text of the GPL version 3 license can be\n found in `/usr/share/common-licenses/GPL-3'.\n\nLicense: GPL-1+\n On Debian systems, the complete text of the GPL version 1 license can be\n found in `/usr/share/common-licenses/GPL-1'.\n\nLicense: LGPL-2.1+\n On Debian systems, the complete text of the LGPL version 2 license can be\n found in `/usr/share/common-licenses/LGPL-2.1'.\n\nLicense: Artistic-1\n On Debian systems, the complete text of the Artistic version 1 license\n can be found in `/usr/share/common-licenses/Artistic'.\n\nLicense: Vim-Regexp\n Permission is granted to anyone to use this software for any\n purpose on any computer system, and to redistribute it freely,\n subject to the following restrictions:\n .\n 1. The author is not responsible for the consequences of use of\n this software, no matter how awful, even if they arise\n from defects in it.\n .\n 2. The origin of this software must not be misrepresented, either\n by explicit claim or by omission.\n .\n 3. Altered versions must be plainly marked as such, and must not\n be misrepresented as being the original software.\n\nLicense: Apache\n On Debian systems, the complete text of the Apache version 2.0 license can be\n found in `/usr/share/common-licenses/Apache-2.0'.\n\nLicense: Expat\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\nLicense: X11\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X\n CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of the X Consortium shall not be\n used in advertising or otherwise to promote the sale, use or other dealings in\n this Software without prior written authorization from the X Consortium.\n\nLicense: UC\n Permission is hereby granted, without written agreement and without\n license or royalty fees, to use, copy, modify, and distribute this\n software and its documentation for any purpose, provided that the\n above copyright notice and the following two paragraphs appear in\n all copies of this software.\n .\n IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR\n DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT\n OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF\n CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n .\n THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY\n AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS\n ON AN \"AS IS\" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO\n PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.\n\nLicense: public-domain\n This source code is released into the public domain. It is provided on an\n as-is basis and no responsibility is accepted for its failure to perform\n as expected. It is worth at least as much as you paid for it!\n\nLicense: Compaq\n 1. GRANT\n Compaq Computer Corporation (\"COMPAQ\") grants you the right to use,\n modify, and distribute the following source code (the \"Software\")\n on any number of computers. You may use the Software as part of\n creating a software program or product intended for commercial or\n non-commercial distribution in machine-readable source code, binary,\n or executable formats. You may distribute the Software as\n machine-readable source code provided this license is not removed\n from the Software and any modifications are conspicuously indicated.\n 2. COPYRIGHT\n The Software is owned by COMPAQ and its suppliers and is protected by\n copyright laws and international treaties. Your use of the Software\n and associated documentation is subject to the applicable copyright\n laws and the express rights and restrictions of these terms.\n 3. RESTRICTIONS\n You may not remove any copyright, trademark, or other proprietary\n notices from the Software or the associated\n You are responsible for compliance with all applicable export or\n re-export control laws and regulations if you export the Software.\n This license is governed by and is to be construed under the laws\n of the State of Texas.\n .\n DISCLAIMER OF WARRANTY AND LIABILITY\n Compaq shall not be liable for technical or editorial errors or\n omissions contained herein. The information contained herein is\n subject to change without notice.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n THE ENTIRE RISK ARISING OUT OF THE USE OF THIS SOFTWARE REMAINS WITH\n RECIPIENT. IN NO EVENT SHALL COMPAQ BE LIABLE FOR ANY DIRECT,\n CONSEQUENTIAL, INCIDENTAL, SPECIAL, PUNITIVE OR OTHER DAMAGES\n WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF BUSINESS\n PROFITS, BUSINESS INTERRUPTION, OR LOSS OF BUSINESS INFORMATION),\n EVEN IF COMPAQ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES\n AND WHETHER IN AN ACTION OF CONTRACT OR TORT INCLUDING NEGLIGENCE.\n\nLicense: XPM\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n .\n Except as contained in this notice, the name of GROUPE BULL shall not be\n used in advertising or otherwise to promote the sale, use or other dealings\n in this Software without prior written authorization from GROUPE BULL.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n .\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n .\n * Neither the name of Kitware, Inc. nor the names of Contributors\n may be used to endorse or promote products derived from this\n software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: BSD-2-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n .\n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n .\n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nLicense: EDL-1\n This program and the accompanying materials are made available\n under the terms of the Eclipse Distribution License v1.0 which\n accompanies this distribution, is reproduced below, and is\n available at http://www.eclipse.org/org/documents/edl-v10.php\n .\n All rights reserved.\n .\n Redistribution and use in source and binary forms, with or\n without modification, are permitted provided that the following\n conditions are met:\n .\n - Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n .\n - Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n .\n - Neither the name of the Eclipse Foundation, Inc. nor the\n names of its contributors may be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\n CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES,\n INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/vim-tiny at 2:9.0.1378-2?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -4998,6 +14555,18 @@
"content": "61f7b57a599d1655d4866f5119c5274505cdd619c71b1c1c2b79b603b32f55ca"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.0-only"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/whiptail at 0.52.23-1+b1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -5014,6 +14583,13 @@
"content": "d7dd1d1411fedf27f5e27650a6eff20ef294077b568f4c8c5e51466dc7c08ce4"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "Zlib"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/zlib1g at 1:1.2.13.dfsg-1?arch=amd64&distro=bookworm&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian"
},
{
@@ -6666,6 +16242,34 @@
"content": "454eb2ecb79e03682b176f04a54b8820ccf8868c074995d96fb6f4736f546cec"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "name": "LGPL-2.1-or-later OR BSD-3-Clause",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "name": "g10-permissive",
+ "text": {
+ "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: libgpg-error\nUpstream-Contact: gnupg-devel at gnupg.org\nSource: https://gnupg.org/ftp/gcrypt/libgpg-error/\n\nFiles: *\nCopyright: 2001-2004, 2010, 2012-2018, g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/b64dec.c\nCopyright: 2008, 2011 Free Software Foundation, Inc.\n 2008, 2011, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/estream-printf.h src/estream-printf.c src/estream.c\nCopyright: 2004-2012, 2014-2017 g10 Code GmbH\nLicense: LGPL-2.1+ or BSD-3-clause\n\nFiles: src/w32-estream.c\nCopyright: 2000 Werner Koch (dd9jn)\n 2001, 2002, 2003, 2004, 2007, 2010, 2016 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/gettext.h\nCopyright: 1995-1998, 2000-2002 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: src/gpg-error-config.in\nCopyright: 1999, 2002, 2003 Free Software Foundation, Inc.\nLicense: g10-permissive\n\nFiles: src/mkheader.c\nCopyright: 2010 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: g10-permissive\n\nFiles: src/posix-lock.c\nCopyright: 2005-2009 Free Software Foundation, Inc.\n 2014 g10 Code GmbH\nLicense: LGPL-2.1+\n\nFiles: src/w32-gettext.c\nCopyright: 1995, 1996, 1997, 1999, 2005, 2007, 2008, 2010 Free Software Foundation, Inc.\nLicense: LGPL-2.1+\n\nFiles: doc/yat2m.c\nCopyright: 2005, 2013, 2015, 2016 g10 Code GmbH\n 2006, 2008, 2011 Free Software Foundation, Inc.\nLicense: GPL-3+\n\nLicense: g10-permissive\n This file is free software; as a special exception the author gives\n unlimited permission to copy and/or distribute it, with or without\n modifications, as long as this notice is preserved.\n .\n This file is distributed in the hope that it will be useful, but\n WITHOUT ANY WARRANTY, to the extent permitted by law; without even the\n implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\nLicense: LGPL-2.1+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as\n published by the Free Software Foundation; either version 2.1\n of the License, or (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public\n License along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n .\n On Debian systems, the complete text of the GNU Lesser General Public License\n version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1.\n\nLicense: GPL-3+\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program; if not, see <https://www.gnu.org/licenses/>.\n .\n On Debian systems, the complete text of the GNU General Public License\n version 3 can be found in /usr/share/common-licenses/GPL-3.\n\nLicense: BSD-3-clause\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n 1. Redistributions of source code must retain the above copyright\n notice, and the entire permission notice in its entirety,\n including the disclaimer of warranties.\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n 3. The name of the author may not be used to endorse or promote\n products derived from this software without specific prior\n written permission.\n .\n THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY EXPRESS OR IMPLIED\n WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.\n"
+ }
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-3.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libgssapi-krb5-2 at 1.20.1-2+deb12u2?arch=amd64&distro=bookworm-security&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian-security"
},
{
@@ -6918,6 +16522,13 @@
"content": "de8ae0c2bb31c926b24c374c1159e8b8d5f9817421f45dd29f22cd201982ee3d"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "MIT"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libk5crypto3 at 1.20.1-2+deb12u2?arch=amd64&distro=bookworm-security&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian-security"
},
{
@@ -6946,6 +16557,18 @@
"content": "9ce3d67db89417e1539f33a62ce85959dc96e3865ecad77606e2af1e6680d6da"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkrb5-3 at 1.20.1-2+deb12u2?arch=amd64&distro=bookworm-security&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian-security"
},
{
@@ -6958,6 +16581,18 @@
"content": "3bb1a8f9cfdd31f92e0cdd0a040c738a2de0d343afe7f830850e3ab7695e649c"
}
],
+ "licenses": [
+ {
+ "license": {
+ "id": "LGPL-2.1-or-later"
+ }
+ },
+ {
+ "license": {
+ "id": "GPL-2.0-or-later"
+ }
+ }
+ ],
"purl": "pkg:deb/debian/libkrb5support0 at 1.20.1-2+deb12u2?arch=amd64&distro=bookworm-security&repository_url=http%3A%2F%2Fdeb.debian.org%2Fdebian-security"
},
{
diff --git a/elbepack/tests/cyclonedx/test_cyclonedx_sbom.py b/elbepack/tests/cyclonedx/test_cyclonedx_sbom.py
index ffe63235932f..0d0393b6159a 100644
--- a/elbepack/tests/cyclonedx/test_cyclonedx_sbom.py
+++ b/elbepack/tests/cyclonedx/test_cyclonedx_sbom.py
@@ -6,9 +6,33 @@ import json
import pathlib
import tempfile
import uuid
+import warnings
import jsonschema
+try:
+ import jsonschema._validators
+
+ def _extras_msg(extras):
+ verb = 'was' if len(extras) == 1 else 'were'
+ return ', '.join(repr(extra) for extra in extras), verb
+
+ # jsonschema before commit 8cff13d0e8b
+ # ("Fix items/prefixItems' message when used with heterogeneous arrays.")
+ # Tries to sort arrays, which does not work with our arrays of dicts.
+ # Override it with a non-sorting variant.
+ jsonschema._validators.extras_msg = _extras_msg
+except ImportError:
+ pass
+
+# RefResolver is deprecated in newer versions of 'jsonschema',
+# But we need it for comaptibility with the versions in Debian.
+# Also, as long as it works...
+with warnings.catch_warnings():
+ warnings.filterwarnings('ignore', 'jsonschema.RefResolver', DeprecationWarning)
+ from jsonschema.validators import RefResolver
+
+
from elbepack.main import run_elbe_subcommand
here = pathlib.Path(__file__).parent
@@ -16,9 +40,11 @@ here = pathlib.Path(__file__).parent
def generate_test_bom():
source_dir = here.joinpath('build-simple-example')
+ mapping_file = here.joinpath('example-mapping.xml')
with tempfile.NamedTemporaryFile() as output:
run_elbe_subcommand([
- 'cyclonedx-sbom', '--output', output.name, '-d', source_dir,
+ 'cyclonedx-sbom', '--output', output.name,
+ '-m', mapping_file, '-d', source_dir,
])
output.seek(0)
return json.load(output)
@@ -28,7 +54,12 @@ def test_schema():
test_bom = generate_test_bom()
with here.joinpath('bom-1.6.schema.json').open() as f:
bom_schema = json.load(f)
- jsonschema.validate(test_bom, bom_schema)
+ with here.joinpath('spdx.schema.json').open() as f:
+ spdx_schema = json.load(f)
+ resolver = RefResolver.from_schema(bom_schema, store={
+ 'http://cyclonedx.org/schema/spdx.schema.json': spdx_schema,
+ })
+ jsonschema.validate(test_bom, bom_schema, resolver=resolver)
def test_reference_data():
--
2.46.0
More information about the elbe-devel
mailing list